-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 KB
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
{
"name": "availability-server",
"description": "Availability - API server",
"private": true,
"version": "1.0.0",
"main": "src/main.js",
"repository": "https://github.com/NSWSESMembers/availability-poc.git",
"author": "Sam Dunster <me@sdunster.com>",
"license": "MIT",
"scripts": {
"start": "nodemon --watch src src/main.js --exec babel-node",
"build": "bash scripts/build.sh",
"serve": "node dist/main.js",
"lint": "eslint src tests",
"test-integration": "bash scripts/health-check.sh && jest tests/ --maxWorkers=4 --coverage && codecov -F integration",
"test-unit": "jest --maxWorkers=4 --testPathIgnorePatterns '^<rootDir>/(tests|dist)/' --coverage && codecov -F unittests",
"test": "jest --testPathIgnorePatterns '^<rootDir>/(tests|dist)/'",
"apns-test": "babel-node scripts/apns.js",
"setup-db": "babel-node src/scripts/setup_db.js"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js"
]
},
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"graphql-tester": "^0.0.5",
"jest": "22.4.3",
"nodemon": "^1.11.0",
"sequelize-mock": "^0.10.2"
},
"dependencies": {
"apn": "^2.2.0",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bcrypt": "^2.0.1",
"body-parser": "^1.17.2",
"codecov": "^3.0.0",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.15.3",
"express-jwt": "^5.3.0",
"faker": "^4.1.0",
"firebase-admin": "^5.12.0",
"graphql": "^0.13.2",
"graphql-date": "^1.0.3",
"graphql-server-express": "^1.1.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"node-fetch": "^2.1.2",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.4.2",
"sqlite3": "^4.0.0",
"subscriptions-transport-ws": "^0.9.11"
}
}