-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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
49
50
51
52
53
54
{
"name": "best-food-truck-app",
"version": "1.0.0",
"author": "",
"license": "ISC",
"devDependencies": {
"chalk-cli": "^4.0.0",
"concurrently": "^3.5.1",
"cross-env": "^5.1.4",
"rimraf": "^2.6.2",
"standard": "^10.0.3"
},
"scripts": {
"start": "concurrently \"yarn run server\" \"yarn run client\"",
"client": "cd client && yarn start",
"server": "cd server && yarn start",
"build": "rimraf server/public/* && cd client && yarn build && cd ../server && yarn build",
"prelint": "chalk cyan bold 'Running Linter'",
"lint": "standard",
"postlint": "chalk cyan bold 'Linter Finished'"
},
"standard": {
"ignore": [
"dist",
"client/build",
"server/public"
]
},
"boilerplate": {
"name": "client-server-boilerplate",
"version": "0.0.0",
"author": "Michael Sweeney <[email protected]> (https://github.com/overthemike)",
"license": "MIT"
},
"description": "",
"dependencies": {
"axios": "^0.18.0",
"file-loader": "^1.1.11",
"glamor": "^2.20.40",
"glamorous": "^4.12.5",
"image-webpack-loader": "^4.2.0",
"jsonwebtoken": "^8.2.1",
"moment": "^2.22.1",
"react-bootstrap": "^0.32.1",
"react-bootstrap-time-picker": "^1.0.3",
"react-redux": "^5.0.7",
"react-stripe-checkout": "^2.6.3",
"react-time-range": "^1.0.2",
"react-timeago": "^4.1.9",
"redux": "^4.0.0",
"stripe": "^5.8.0"
},
"proxy": "http://localhost:3001"
}