-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"name": "crwn-clothing",
"engines": {
"node": "17.7.1",
"npm": "8.5.2"
},
"version": "0.0.1",
"description": "E-commerence clothes store",
"main": "server.js",
"devDependencies": {
"concurrently": "^7.1.0",
"eslint": "^8.14.0",
"nodemon": "^2.0.15"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail 'npm run server' 'npm run client'",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coder8080/crwn-clothing.git"
},
"author": "coder8080",
"license": "ISC",
"bugs": {
"url": "https://github.com/coder8080/crwn-clothing/issues"
},
"homepage": "https://github.com/coder8080/crwn-clothing#readme",
"dependencies": {
"body-parser": "^1.20.0",
"compress": "^0.99.0",
"compression": "^1.7.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-sslify": "^1.2.0",
"stripe": "^8.219.0"
},
"env": {
"node": true,
"commonjs": false,
"browser": false
}
}