This repository has been archived by the owner on Oct 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
129 lines (129 loc) · 3.62 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "klicker-api",
"version": "1.5.5",
"main": "src/server.js",
"homepage": "https://www.klicker.uzh.ch",
"repository": "https://github.com/uzh-bf/klicker-api.git",
"bugs": "https://github.com/uzh-bf/klicker-uzh",
"maintainers": [
"Roland Schlaefli <[email protected]>"
],
"contributors": [
"wuergrob <[email protected]>",
"Jokkis80 <[email protected]>",
"Luca Locher <[email protected]>"
],
"engines": {
"node": ">=12",
"yarn": "YARN NO LONGER USED - use npm instead."
},
"license": "AGPL-3.0",
"dependencies": {
"@graphql-tools/schema": "6.2.4",
"apollo-server-express": "2.18.2",
"aws-sdk": "2.765.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"caller": "1.0.1",
"compression": "1.7.4",
"convict": "6.0.1",
"convict-format-with-validator": "6.0.1",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "7.0.3",
"dataloader": "2.0.0",
"dayjs": "1.9.8",
"dotenv": "8.2.0",
"draft-js": "0.11.7",
"elastic-apm-node": "3.7.0",
"express": "4.17.1",
"express-jwt": "6.0.0",
"express-rate-limit": "5.1.3",
"generate-password": "1.5.1",
"graphql": "15.3.0",
"graphql-iso-date": "3.6.1",
"graphql-middleware": "4.0.2",
"graphql-redis-subscriptions": "2.3.1",
"graphql-shield": "7.3.7",
"graphql-subscriptions": "1.1.0",
"handlebars": "4.7.7",
"helmet": "4.1.1",
"ioredis": "4.17.3",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"md5": "2.3.0",
"mongodb": "3.6.10",
"mongoose": "5.10.18",
"morgan": "1.10.0",
"node-schedule": "1.3.2",
"nodemailer": "6.4.18",
"pretty-error": "2.1.2",
"ramda": "0.27.1",
"rate-limit-redis": "2.0.0",
"raven": "2.6.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"request": "2.88.2",
"request-promise": "4.2.6",
"saslprep": "1.0.3",
"subscriptions-transport-ws": "0.9.18",
"uuid": "8.3.2",
"v8n": "1.3.3",
"validator": "13.1.17"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"nodemon": "2.0.12",
"prettier": "2.2.1",
"supertest": "5.0.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -w \"src/**/*.js\" -w .env -w package.json src/server.js",
"dev:inspect": "cross-env NODE_ENV=development nodemon -w \"src/**/*.js\" -w .env -w package.json --inspect src/server.js",
"dev:ndb": "cross-env NODE_ENV=development ndb node src/server.js",
"format": "prettier --write \"src/**/*.js\" \"src/**/*.graphql\" \"src/**/*.json\"",
"format:ci": "prettier --list-different \"src/**/*.js\" \"src/**/*.graphql\" \"src/**/*.json\"",
"lint": "eslint \"src/**/*.js\"",
"start": "cross-env NODE_ENV=production node src/server.js",
"start:inspect": "cross-env NODE_ENV=production node --inspect src/server.js",
"test": "jest",
"test:ci": "jest --coverage --forceExit",
"test:snap": "jest -u",
"test:watch": "jest --watch"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src/"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint"
],
"*.ts": [
"prettier --write",
"eslint"
],
"*.json": [
"prettier --write"
],
"*.graphql": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "jest --onlyChanged"
}
}
}