-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.16 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",
"proxy": "http://localhost:5000",
"engines": {
"node": "12.13.1",
"npm": "6.14.6"
},
"description": "CRWN clothing shop server",
"main": "server.js",
"scripts": {
"client": "cd client && npm start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oussamabouchikhi/reactecommerce.git"
},
"author": "Oussama Bouchikhi",
"license": "ISC",
"bugs": {
"url": "https://github.com/oussamabouchikhi/reactecommerce/issues"
},
"homepage": "https://github.com/oussamabouchikhi/reactecommerce#readme",
"dependencies": {
"body-parser": "^1.20.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"stripe": "^8.78.0"
},
"devDependencies": {
"concurrently": "^5.2.0",
"nodemon": "^2.0.20"
}
}