-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "flocs-visual-components",
"version": "1.0.20",
"description": "React visual components for Flocs",
"author": "Tomas Effenberger",
"license": "GPL-3.0",
"homepage": "https://github.com/adaptive-learning/flocs-visual-components",
"main": "lib/flocs-visual-components.js",
"dependencies": {
"brace": "^0.9.1",
"js-interpreter": "github:effa/JS-Interpreter#f7afaf9d4862f85394bf4860f8ba8e57f67fbdf2",
"material-ui": "^0.16.7",
"node-blockly": "^1.0.15",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-ace": "^4.0.0",
"react-blockly-component": "^2.0.1",
"react-custom-scrollbars": "^4.0.2",
"react-intl": "^2.2.3",
"react-intl-redux": "^0.3.0",
"react-joyride": "^1.10.1",
"react-redux": "^4.4.5",
"react-router-redux": "^4.0.8",
"react-split-pane": "^0.1.57",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.5.2",
"redux-logger": "^2.7.4",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.1.0"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"optionalDependencies": {
"react-router": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.1",
"eslint": "^3.3.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"pegjs": "^0.10.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"redux": "^3.5.2",
"redux-devtools": "^3.3.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"prepublish": "npm run build",
"start": "webpack-dev-server --config webpack.config.development.js --progress --inline --hot --content-base examples/",
"build": "npm run clean && webpack --config webpack.config.build.js",
"lint": "eslint src examples",
"clean": "rm -rf lib",
"generate-robocode-parser": "pegjs -o src/core/pegRoboCodeParser.js src/core/roboCodeGrammar.pegjs && sed -i '1i\\'\"/* eslint-disable */\" src/core/pegRoboCodeParser.js",
"generate-task-parser": "pegjs -o src/core/pegTaskSourceParser.js src/core/taskSourceGrammar.pegjs && sed -i '1i\\'\"/* eslint-disable */\" src/core/pegTaskSourceParser.js"
},
"bin": {
"parseTask": "./tools/parseTask.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adaptive-learning/flocs-visual-components.git"
}
}