This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 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
{
"name": "events-service",
"version": "1.0.0",
"description": "Event service used for Zen, the CoderDojo community platform",
"main": "index.js",
"repository": "git@github.com:CoderDojo/events-service.git",
"author": "CoderDojo Foundation <webteam@coderdojo.org>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node index.js | pino-socket -m tcp -a data.logentries.com ",
"dev": "nodemon -x \"node --trace-warnings --inspect=0.0.0.0 index.js\"",
"lint": "eslint .",
"precommit": "lint-staged",
"unit": "NODE_ENV=test ICS_EVENT_URL=https://zen.coderdojo.com/api/3.0/events/ EVENT_URL=https://zen.coderdojo.com/events/ mocha -t 10000 --require ./test/helper.js ./test/unit --recursive --forbid-pending --full-trace --exit",
"int": "NODE_ENV=test ICS_EVENT_URL=https://zen.coderdojo.com/api/3.0/events/ EVENT_URL=https://zen.coderdojo.com/events/ mocha -t 10000 --require ./test/helper.js ./test/integration --recursive --forbid-pending --full-trace --exit",
"test": "concurrently \"yarn int\" \"yarn unit\""
},
"lint-staged": {
"*.js": [
"eslint --fix --ext .js",
"git add"
]
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^3.6.0",
"eslint": "^4.18.2",
"eslint-config-coderdojo": "^1.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"mocha": "^5.0.1",
"nodemon": "^1.17.1",
"proxyquire": "^2.0.0",
"sinon": "^4.4.2",
"sinon-chai": "^2.14.0",
"lint-staged": "^8.1.4",
"supertest": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-validator": "^5.3.1",
"ics": "^2.13.1",
"knex": "^0.16.3",
"moment": "^2.21.0",
"newrelic": "^5.4.0",
"objection": "^1.0.0",
"pg": "^7.4.1",
"pg-types": "^1.12.1",
"pino": "^4.14.0",
"pino-socket": "^1.0.1",
"uuid": "^3.2.1"
}
}