-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
47
48
{
"name": "queue-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^8.2.1"
},
"proxy": "http://localhost:3001/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"babel": "babel ./server/index.js -o ./server/index.babel.js",
"babel-node": "babel-node --presets=/*a*/ --ignore='foo|bar|baz'",
"serve": "yarn babel && nodemon --exec babel-node -- ./server/index.js",
"prod": "yarn babel && yarn build",
"push": "yarn prod && git add -A && git commit -m $1 && git push origin master"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"deep-filter-object": "^1.0.0",
"express": "^4.15.4",
"filter-object": "^3.0.0",
"firebase": "^4.3.0",
"firebase-admin": "^5.2.1",
"helmet": "^3.8.1",
"ip": "^1.1.5",
"lodash": "^4.17.4",
"normalize.css": "^7.0.0",
"pug": "^2.0.0-rc.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2",
"react-scripts": "1.0.11",
"stripe": "^4.24.0",
"twilio": "^3.6.5"
},
"devDependencies": {
"dotenv": "^4.0.0",
"eslint": "^4.4.1",
"nodemon": "^1.12.0",
"prettier": "^1.5.3"
}
}