-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.31 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
48
49
50
{
"name": "pcstore",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "app.js",
"scripts": {
"test": "mocha --timeout 20000 --recursive --exit",
"start": "node backend/app",
"server": "nodemon backend/app",
"client": "npm start --prefix frontend",
"client_next": "npm run dev --prefix frontend_next",
"dev": "concurrently \"npm run server\" \"npm run client_next\"",
"data:import": "node backend/seeder",
"data:destroy": "node backend/seeder -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mirzamurod/PcStore.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mirzamurod/PcStore/issues"
},
"homepage": "https://github.com/Mirzamurod/PcStore#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.2",
"joi": "^17.7.0",
"js-base64": "^3.7.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12",
"morgan": "^1.10.0",
"multer": "^1.4.3"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"concurrently": "^7.1.0",
"nodemon": "^2.0.15"
}
}