-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
71 lines (71 loc) · 2.18 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "graphql-stylo",
"version": "3.1.5",
"description": "",
"main": "app.js",
"private": true,
"engines": {
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"generate-service-token": "node -p \"require('jsonwebtoken').sign({ admin: true, roles: ['read'], readonly: true }, process.env.JWT_SECRET_SESSION_COOKIE, { expiresIn: '1 year' })\"",
"test": "jest --collectCoverage --coverageReporters html --coverageReporters text-summary --coverageReporters lcovonly --detectOpenHandles",
"migrations": "DOTENV_CONFIG_PATH=${DOTENV_CONFIG_PATH:-../.env} node -r dotenv/config ./node_modules/.bin/db-migrate up",
"posttest": "eslint '**/*.js'",
"prestart": "npm run migrations",
"start": "node app.js",
"preprod": "npm run migrations",
"prod": "NODE_ENV=production node --tls-max-v1.2 --heapsnapshot-signal=SIGUSR2 app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^9.0.12",
"@sentry/node": "^8.38.0",
"@sentry/profiling-node": "^8.38.0",
"atob": "^2.1.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"colornames": "^1.1.1",
"connect-mongo": "^3.2.0",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"cors": "^2.8.5",
"css-tree": "^2.3.1",
"dataloader": "^2.2.2",
"db-migrate": "^0.11.14",
"db-migrate-mongodb": "^1.5.0",
"dompurify": "^2.4.3",
"dotenv": "^16.4.5",
"express": "^4.16.4",
"express-session": "^1.17.1",
"graphql-http": "^1.9.0",
"graphql-scalars": "^1.20.1",
"jsdom": "^21.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.11.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"passport-oauth1": "^1.3.0",
"passport-openidconnect": "^0.1.1",
"pino": "^7.11.0",
"pino-http": "^7.0.0",
"remove-markdown": "^0.5.0",
"ws": "^8.13.0",
"y-websocket": "^1.5.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "~4.3",
"@types/jest": "~29.5",
"eslint": "~8.57",
"eslint-plugin-jest": "~28.9",
"eslint-plugin-security": "~3.0",
"jest": "~29.7",
"jest-environment-node": "~29.7"
},
"volta": {
"node": "18.20.4",
"npm": "10.9.0"
}
}