-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.72 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
{
"name": "xwing-rulebook",
"version": "1.0.0",
"description": "A package to handle all the build dependencies of the xwing-rulebook project",
"main": "index.js",
"dependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chokidar-cli": "^1.2.0",
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"moment": "^2.13.0",
"node-sass": "^4.5.3",
"node-sass-chokidar": "^0.0.3",
"node-sass-import": "^1.1.1",
"npm": "^5.1.0",
"npm-run-all": "^4.0.2",
"postcss-cli": "^4.1.0",
"raven-js": "^3.8.0",
"react": "^15.1.0",
"react-day-picker": "^2.2.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"webpack": "^1.13.1",
"yarn": "^0.24.6"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"scripts": {
"test": "mocha ./xwing_rulebook/static/scripts/tests",
"watch-js": "webpack --progress --colors --watch",
"watch-css": "npm run build-css; chokidar './xwing_rulebook/static/styles/**/*.*' -c 'npm run build-css'",
"build-js": "webpack --progress --colors",
"build-css": "node-sass-chokidar --importer node_modules/node-sass-import --source-map ./xwing_rulebook/static/build/main.css.map ./xwing_rulebook/static/styles/main.scss ./xwing_rulebook/static/build/main.css; node-sass-chokidar --importer node_modules/node-sass-import --source-map ./xwing_rulebook/static/build/admin.css.map ./xwing_rulebook/static/styles/admin.scss ./xwing_rulebook/static/build/admin.css",
"build": "npm-run-all -p build-*"
},
"author": "Luis Visintini",
"license": "ISC"
}