forked from mozilla/blurts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "blurts-server",
"description": "Blurts backend Server",
"version": "0.0.1",
"author": "Nihanth Subramanya",
"bugs": {
"url": "https://github.com/mozilla/blurts-server/issues"
},
"dependencies": {
"arg": "^2.0.0",
"body-parser": "^1.18.3",
"client-oauth2": "^4.2.1",
"client-sessions": "^0.8.0",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-hbs": "^1.0.4",
"got": "^8.3.1",
"hbs": "^4.0.1",
"knex": "^0.14.6",
"nodemailer": "^4.6.4",
"nodemailer-express-handlebars": "^3.0.0",
"objection": "^1.1.9",
"pg": "^7.4.3"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^4.18.1",
"eslint-plugin-node": "^6.0.1",
"faucet": "^0.0.1",
"htmllint-cli": "^0.0.6",
"npm-run-all": "^4.1.3",
"nsp": "^3.2.1",
"nyc": "^11.8.0",
"tape": "^4.9.0"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/mozilla/blurts-server#readme",
"license": "ISC",
"main": "server.js",
"nyc": {
"all": true
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/blurts-server.git"
},
"scripts": {
"lint": "npm-run-all lint:*",
"lint:js": "eslint .",
"lint:nsp": "nsp check",
"migrate": "knex migrate:latest --knexfile db/knexfile.js",
"pretest": "npm run lint",
"get-hashsets": "node scripts/get-hashsets",
"start": "node server.js",
"test": "nyc tape tests/**/test*.js | faucet && nyc report --reporter=text-lcov | coveralls"
}
}