-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.03 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.03 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
{
"name": "todo",
"version": "0.1.0",
"private": true,
"dependencies": {
"must-sinon": "^0.0.0",
"node-sass-chokidar": "^0.0.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"redux": "^3.7.2",
"sinon": "^3.3.0"
},
"homepage" : "http://apps.codeite.net/todo",
"devDependencies": {
"enzyme": "^2.9.1",
"react-scripts": "1.0.10",
"react-test-renderer": "^15.6.1"
},
"scripts": {
"build-scssMaster": "find src -name *.scss | awk 'NF { print \"@import \\\"../\"$0\"\\\";\"}' > public/bundle.scss",
"build-css": "npm run build-scssMaster && node-sass-chokidar public/bundle.scss -o public",
"watch-css": "npm run build-css && node-sass-chokidar public/bundle.scss -o public --watch",
"start": "react-scripts start",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"publish": "yarn build && rsync -avz --delete ./build/ sam@helium:~/apps/todo/static",
"dev": "yarn start && yarn watch-css"
}
}