-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 2.17 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
{
"name": "openvpn-access-backend",
"private": true,
"version": "0.0.0",
"description": "",
"main": "src/index.ts",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"dev": "ts-node-dev --respawn --no-notify --cls --transpile-only src/index.ts",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch",
"lint:ts": "eslint src/**/*.{js,ts} tests/**/*.{js,ts}",
"lint:ts:fix": "eslint src/**/*.{js,ts} tests/**/*.{js,ts} --fix",
"lint:types": "tsc --project tsconfig.json --noEmit",
"lint:fix": "npm run lint:ts:fix && npm run lint:types",
"dry": "npm run lint:fix && npm test",
"prisma:introspect": "prisma introspect",
"prisma:generate": "prisma generate",
"prisma:reintegrate": "npm run prisma:introspect && npm run prisma:generate"
},
"devDependencies": {
"@prisma/cli": "^2.4.1",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.9",
"@types/joi": "^14.3.4",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/nodemailer": "^6.4.0",
"@types/qrcode": "^1.3.5",
"@types/supertest": "^2.0.10",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-simon": "^2.1.0",
"jest": "^26.4.0",
"jest-extended": "^0.11.5",
"node-fetch": "^2.6.0",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"ts-node-dev": "1.0.0-pre.50"
},
"dependencies": {
"@prisma/client": "^2.4.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"express": "^4.17.1",
"joi": "^17.2.0",
"nodemailer": "^6.4.11",
"otplib": "^12.0.1",
"qrcode": "^1.4.4",
"typescript": "^3.9.7",
"validator": "^13.1.1",
"ws": "^7.3.1"
}
}