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
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "tracker-api",
"version": "0.1.0",
"scripts": {
"build": "npm run clean && babel ./src --out-dir dist/src --ignore 'src/**/*.spec.js','src/**/*.test.js' && cp ./index.js dist/ && cp ./migrations.js dist/",
"start": "node ./dist/index.js",
"dev": "nodemon --exec babel-node index.js",
"clean": "rm -rf ./dist && mkdir dist",
"test": "jest",
"test-coverage": "jest --coverage",
"lint": "eslint src",
"prettier": "prettier --write \"**/*.js\"",
"add-locale": "npx lingui add-locale",
"extract": "npx lingui extract",
"compile": "npx lingui compile"
},
"author": "",
"license": "ISC",
"dependencies": {
"@lingui/core": "^2.9.2",
"apollo-server-express": "^2.18.2",
"arango-tools": "0.0.9",
"arangojs": "^7.1.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-request-language": "^1.1.15",
"graphql": "^15.3.0",
"graphql-relay": "^0.6.0",
"graphql-scalars": "^1.4.0",
"graphql-subscriptions": "^1.1.0",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"notifications-node-client": "^5.0.0",
"psl": "^1.8.0",
"subscriptions-transport-ws": "^0.9.18",
"url-slug": "^2.3.2",
"validator": "^13.1.17"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@lingui/cli": "^2.9.2",
"@lingui/loader": "^2.9.2",
"@lingui/macro": "^2.9.2",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-macros": "^2.8.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.0",
"jest-fetch-mock": "^3.0.3",
"jest-matcher-utils": "^26.6.0",
"nodemon": "^2.0.5",
"prettier": "^2.1.2",
"supertest": "^5.0.0"
},
"jest": {
"verbose": true,
"automock": false
}
}