-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "todaywelearned",
"version": "0.1.0",
"private": true,
"devDependencies": {
"plop": "^1.7.4",
"react-scripts": "0.9.4"
},
"dependencies": {
"@mars/heroku-js-runtime-env": "^3.0.0",
"immutable": "^3.8.1",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-fastclick": "^3.0.1",
"react-helmet": "^4.0.0",
"react-redux": "^5.0.2",
"react-router-dom": "next",
"react-timeago": "^3.2.0",
"redux": "^3.6.0",
"redux-immutable": "^3.0.11",
"redux-saga": "^0.14.3",
"sanitize.css": "^4.1.0",
"whatwg-fetch": "^2.0.2"
},
"scripts": {
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "react-scripts build",
"build-css": "node-sass src/ -o src/",
"watch-css": "yarn run build-css && node-sass src/ -o src/ --watch --recursive",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"generate": "plop --plopfile generators/index.js",
"deploy:staging": "react-scripts build && aws s3 sync build/ s3://www.admin-staging.mvbth.com",
"deploy:prod": "react-scripts build && aws s3 sync build/ s3://admin.mvbth.com"
}
}