-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "channel-zero-data-api",
"version": "0.44.0",
"description": "",
"main": "server.js",
"keywords": [],
"author": "Michael Gregoire <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"start": "node -r esm ./server",
"dev": "nodemon -r esm ./server",
"test": "NODE_ENV=test knex migrate:rollback && NODE_ENV=test knex migrate:latest && NODE_ENV=test knex seed:run && NODE_ENV=test nyc --reporter=lcov --all mocha --timeout 5000 -r esm"
},
"nyc": {
"exclude": [
"coverage/**",
"test/**",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"aws-sdk": "^2.553.0",
"bcrypt": "^3.0.6",
"chai-date-string": "^0.1.0",
"dotenv": "^6.2.0",
"esm": "^3.1.0",
"fastify": "^1.13.4",
"fastify-cors": "^1.0.0",
"fastify-file-upload": "^1.0.0",
"fastify-helmet": "^3.0.1",
"file-type": "^10.9.0",
"form-data": "^2.3.3",
"fs-extra": "^8.0.1",
"image-size": "^0.8.3",
"is-svg": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.3",
"lodash.merge": "^4.6.2",
"moment": "^2.24.0",
"mysql2": "^1.6.4",
"nodemailer": "^6.4.6",
"pg": "^7.14.0",
"sanitize-html": "^1.20.1",
"sharp": "^0.25.1",
"slug": "^1.0.0",
"strip-js": "^1.2.0",
"striptags": "^3.1.1",
"url-parse": "^1.4.7",
"validator": "^10.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^5.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"lodash": "^4.17.15",
"mocha": "^5.2.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"pino-pretty": "^2.5.0",
"prettier": "^2.0.2",
"rimraf": "^2.6.3",
"sqlite3": "^4.1.0"
}
}