-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 884 Bytes
/
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
{
"name": "ecommerce-app",
"private": true,
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"connect-pg-simple": "^9.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.11.1",
"pg-copy-streams": "^6.0.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"supertest": "^6.3.3"
},
"scripts": {
"build:nosave": "npm install --no-save && rm -rf static && cd ./view && npm install --no-save && npm run build --prod && cp -r static ../",
"build:save": "npm install && rm -rf static && cd ./view && npm install && npm run build --prod && cp -r static ../",
"test": "bin/mocha-test",
"start": "node app.js"
},
"engines": {
"node":"18.x"
}
}