-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 901 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 901 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
33
34
35
36
37
{
"name": "darkapi",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest --verbose --runInBand --testLocationInResults",
"test:watch": "npm run test -- --watch",
"start": "node server.js",
"start:watch": "nodemon server.js",
"seed": "node seed.js",
"drop": "mongo dark --eval 'db.dropDatabase()'",
"db-load-all": "npm run drop && npm run seed"
},
"author": "",
"license": "ISC",
"dependencies": {
"eslint": "^7.8.1",
"express": "^4.17.1",
"mongodb": "^3.6.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"jest": "^26.4.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.3",
"node-html-parser": "^1.2.20",
"superagent": "^6.1.0"
}
}