-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 765 Bytes
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": "mi-pokeapi",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "app.js",
"scripts": {
"start": "set NODE_ENV=production&& node --env-file=.env app.js ",
"test": "set NODE_ENV=test&& mocha -r dotenv/config '**/*-test/**/*.test.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"express": "^4.18.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.2.4",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"chai": "^5.1.0",
"chai-http": "^4.4.0",
"chai-superagent": "^3.0.0",
"dotenv": "^16.4.5",
"mocha": "^10.3.0",
"supertest": "^6.3.4"
}
}