-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"scripts": {
"build-dll": "webpack -p --config webpack.dll.js --env.min && webpack --config webpack.dll.js",
"build-todolist": "webpack -p --env.app=todolist --env.min && webpack --env.app=todolist",
"watch-todolist": "webpack --env.app=todolist --watch",
"build-theme": "sass-lint -v -q && node-sass --recursive --output plugins/theme/plus/style plugins/theme/plus/sass",
"watch-theme": "watch 'npm run build-theme' plugins/theme/plus/sass",
"lint-theme": "sass-lint -v -q || true",
"build-all": "npm-run-all build-dll build-todolist build-theme"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.1.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"eslint": "4.0.0",
"eslint-loader": "1.8.0",
"eslint-plugin-react": "7.1.0",
"node-sass": "4.5.3",
"npm-run-all": "4.0.2",
"sass-lint": "1.10.2",
"watch": "1.0.2",
"webpack": "2.6.1"
},
"dependencies": {
"clone": "2.1.1",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-redux": "5.0.5",
"redux": "3.7.0",
"redux-thunk": "2.2.0",
"superagent": "3.5.2"
}
}