-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.88 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
88
89
90
{
"name": "tracker-api",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/canada-ca/tracker/tree/master/api"
},
"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 --out-dir dist/",
"start": "node ./dist/index.js",
"dev": "NODE_OPTIONS=--dns-result-order=ipv4first babel-node index.js",
"dev:watch": "nodemon --exec babel-node index.js",
"clean": "rm -rf ./dist && mkdir dist",
"test": "NODE_OPTIONS=--dns-result-order=ipv4first jest --testPathIgnorePatterns=.*-scan-data.* --env=node",
"only": "NODE_OPTIONS=--dns-result-order=ipv4first jest",
"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"
},
"overrides": {
"form-data@^3.0.0": "3.0.4",
"form-data@^4.0.0": "4.0.4"
},
"dependencies": {
"@apollo/server": "^5.5.0",
"@as-integrations/express4": "^1.1.2",
"@lingui/core": "^4.13.0",
"accesscontrol": "^2.2.1",
"arango-tools": "^0.6.0",
"arangojs": "^10.2.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.6",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.22.2",
"express-request-language": "^1.1.15",
"graphql": "^16.12.0",
"graphql-depth-limit": "^1.1.0",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-relay": "^0.10.2",
"graphql-scalars": "^1.25.0",
"graphql-subscriptions": "^2.0.0",
"graphql-validation-complexity": "^0.4.2",
"ioredis": "^4.28.3",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^9.0.2",
"make-plural": "^7.1.0",
"moment": "^2.29.4",
"ms": "^2.1.3",
"nats": "^2.18.0",
"notifications-node-client": "^8.2.1",
"url-slug": "^3.0.2",
"uuid": "^11.1.1",
"validator": "^13.15.22"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@jest/test-sequencer": "^30.3.0",
"@lingui/cli": "^5.4.1",
"@lingui/macro": "^4.13.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^30.4.1",
"babel-plugin-macros": "^3.1.0",
"babel-polyfill": "^6.26.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^30.4.2",
"jest-fetch-mock": "^3.0.3",
"jest-matcher-utils": "^30.3.0",
"nodemon": "^3.1.11",
"prettier": "^2.5.1",
"supertest": "^7.0.0"
}
}