-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
49
50
51
52
53
54
55
56
57
{
"name": "buecherbox-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r dotenv/config index.js",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha --recursive --timeout 5000 --exit",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"startpsql": "brew services start postgresql",
"stoppsql": "brew services stop postgresql"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^6.10.2",
"argon2": "^0.23.0",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"file-type": "^12.3.0",
"helmet": "^3.21.0",
"http-status-codes": "^1.3.2",
"jimp": "^0.6.4",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^7.11.0",
"rate-limit-redis": "^1.6.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.7",
"@types/pg": "^7.11.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"mocha": "^6.1.4",
"node-mocks-http": "^1.7.6",
"nyc": "^14.1.1",
"sinon": "^7.3.2"
}
}