-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "candy-store-with-auth",
"version": "1.0.0",
"description": "candy store with authentication",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "cross-env NODE_ENV=production node src/index.js",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"test": " cross-env NODE_ENV=test jest",
"build:db": "cross-env NODE_ENV=development node src/database/config/run_build",
"prod:build:db": "cross-env NODE_ENV=production node src/database/config/run_build",
"build": "npm install && npm run build:db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G13/candy-store-with-auth.git"
},
"author": "haitham & mohammad & Abeer",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G13/candy-store-with-auth/issues"
},
"homepage": "https://github.com/GSG-G13/candy-store-with-auth#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"env2": "^2.2.2",
"express": "^4.18.2",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"pg": "^8.10.0"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
}
}