-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "crwn-clothing-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "v12.5.0",
"npm": "6.9.0"
},
"proxy": "http://localhost:5000",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BobbyWalker/crwn-clothing.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BobbyWalker/crwn-clothing/issues"
},
"homepage": "https://github.com/BobbyWalker/crwn-clothing#readme",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"nodemon": "^2.0.3",
"stripe": "^8.47.0"
},
"devDependencies": {
"concurrently": "^5.2.0"
}
}