-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
{
"name": "code-view-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cp node_modules/ace-builds/src-min/ -a resources/ace/ && webpack --progress --colors -p --config ./webpack.production.config.js",
"develop": "cp node_modules/ace-builds/src/ -a resources/ace/ && webpack-dev-server --progress --colors",
"test": "jest",
"watch-test": "jest --verbose --watch"
},
"author": "",
"license": "MIT",
"dependencies": {
"ace-builds": "^1.2.2",
"lodash": "^4.13.1",
"material-ui": "^0.15.1",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.2",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.10.4",
"babel-jest": "^13.2.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2016": "^6.11.3",
"babel-preset-react": "^6.11.1",
"enzyme": "^2.4.1",
"jest": "^13.2.3",
"react-hot-loader": "^1.3.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"jest": {
"unmockedModulePathPatterns": [
"react",
"enzyme"
]
}
}