forked from Organisasjonskollegiet/voting-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.12 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
{
"name": "voting-backend",
"version": "1.0.0",
"description": "Backend of the voting app",
"main": "index.js",
"repository": "https://github.com/Organisasjonskollegiet/voting-backend",
"author": "kharann",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --transpile-only --no-notify src/index.ts",
"build": "tsc",
"test": "yarn nexus-generate && jest --runInBand",
"lint": "eslint src/",
"format": "prettier --write src/*",
"start": "node dist/src/index.js",
"generate": "prisma generate",
"nexus-generate": "ts-node --transpile-only src/schema/index.ts",
"populatedb": "ts-node-dev --transpile-only --no-notify src/utils/populatedb",
"migrate:db": "prisma migrate deploy"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"apollo-server-express": "2.25.3",
"auth0": "^2.40.0",
"axios": "^0.26.0",
"bcrypt": "^5.0.1",
"casual": "^1.6.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-jwt": "^6.1.1",
"graphql": "15.8.0",
"graphql-iso-date": "^3.6.1",
"graphql-middleware": "^6.1.14",
"graphql-shield": "^7.5.0",
"graphql-subscriptions": "^2.0.0",
"jest": "^27.5.1",
"jwks-rsa": "^2.0.5",
"mailersend": "^1.3.1",
"moment": "^2.29.1",
"nexus": "^1.2.0",
"subscriptions-transport-ws": "^0.11.0",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/auth0": "^2.34.13",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-jwt": "^6.0.4",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"get-port": "^5.1.1",
"graphql-request": "3.7.0",
"prettier": "^2.5.1",
"prisma": "^3.13.0",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}