forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.8 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.8 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "tracker-api",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/canada-ca/tracker/tree/master/api-js"
},
"author": "nsdeschenes",
"license": "MIT",
"scripts": {
"build": "npm run clean && babel ./src --out-dir dist/src --ignore 'src/**/*.spec.js','src/**/*.test.js' && babel index.js database-options.js --out-dir dist/",
"start": "node ./dist/index.js",
"dev": "nodemon --exec babel-node index.js",
"clean": "rm -rf ./dist && mkdir dist",
"test": "jest",
"test-remainder": "jest --testPathIgnorePatterns=.*-scan-data.*",
"test-subscriptions": "jest --runInBand --testPathPattern=.*-scan-data.*",
"test-coverage": "jest --coverage",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.js\"",
"extract": "npx lingui extract",
"compile": "npx lingui compile",
"lin-clean": "npx lingui extract --clean"
},
"dependencies": {
"@lingui/core": "^3.10.4",
"apollo-server": "^3.1.2",
"apollo-server-core": "^3.1.2",
"apollo-server-express": "^3.1.2",
"arango-express": "^1.0.0",
"arango-tools": "^0.5.0",
"arangojs": "^7.5.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dataloader": "^2.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-request-language": "^1.1.15",
"graphql": "^15.5.1",
"graphql-depth-limit": "^1.1.0",
"graphql-playground-middleware-express": "^1.7.22",
"graphql-redis-subscriptions": "^2.4.0",
"graphql-relay": "^0.8.0",
"graphql-scalars": "^1.10.0",
"graphql-subscriptions": "^1.2.1",
"graphql-validation-complexity": "^0.4.2",
"ioredis": "^4.27.8",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"notifications-node-client": "^5.1.0",
"psl": "^1.8.0",
"subscriptions-transport-ws": "^0.9.19",
"url-slug": "^3.0.2",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@jest/test-sequencer": "^27.0.6",
"@lingui/cli": "^3.10.2",
"@lingui/loader": "^3.10.2",
"@lingui/macro": "^3.10.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.6",
"babel-plugin-macros": "^3.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"jest-matcher-utils": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"supertest": "^6.1.6"
}
}