-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
45
46
47
48
{
"name": "nadia",
"version": "1.0.0",
"description": "Nadia's Garden Reservations",
"main": "bin/www",
"repository": "git@github.com:fluxsauce/nadia.git",
"author": "Jon Peck <jpeck@fluxsauce.com>",
"license": "MIT",
"private": true,
"scripts": {
"debug": "cross-env DEBUG=nadia:* nodemon",
"start": "node bin/www",
"lint": "eslint .",
"test:mocha": "cross-env DEBUG=nadia:* mocha",
"test:jest": "cross-env DEBUG=nadia:* jest",
"coverage:mocha": "cross-env DEBUG=nadia:* nyc --reporter=html --reporter=text mocha",
"coverage:jest": "jest --coverage"
},
"dependencies": {
"basic-auth": "^1.1.0",
"body-parser": "~1.20.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"express": "~4.18.2",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"moment": "^2.29.4",
"morgan": "~1.10.0",
"node-env": "^0.1.8",
"pug": "^3.0.2",
"serve-favicon": "~2.5.0",
"sqlite": "^4.2.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cross-env": "^5.0.1",
"eslint": "^8.3.0",
"jest": "^27.4.3",
"mocha": "^9.2.2",
"nodemon": "^1.11.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.1.6"
}
}