-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1016 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dista",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "nyc mocha"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "~4.16.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.0",
"morgan": "~1.9.0",
"request": "^2.88.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"mocha": "^9.2.0",
"mongodb-memory-server": "^6.9.6",
"nyc": "^15.1.0"
},
"mocha": {
"env": "test",
"reporter": "spec",
"full-trace": "true",
"spec": "tests",
"recursive": "true",
"exit": "true"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"all": "true",
"exclude": [
"client",
"public",
"coverage"
]
},
"standard": {
"ignore": [
"test/",
"public/",
"docs/",
"client/tests"
]
}
}