-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.27 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
{
"name": "yggdrasil",
"version": "0.1.0",
"description": "Yggdrasil Text-RP",
"private": true,
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"scripts": {
"start": "nodemon",
"postinstall": "npm run db:generate",
"db:generate": "npx prisma generate",
"db:migrate:dev": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/mydb?schema=public prisma migrate dev",
"db:migrate:dev:create": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/mydb?schema=public prisma migrate dev --create-only",
"db:seed:dev": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/mydb?schema=public prisma db seed",
"db:reset:dev": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/mydb?schema=public prisma migrate reset",
"db:migrate:test": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5433/mydb?schema=public prisma migrate dev",
"db:seed:test": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5433/mydb?schema=public prisma db seed",
"nexus:typegen": "ts-node --transpile-only schema",
"test": "echo No tests configured",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prettier": "prettier -w .",
"prettier:check": "prettier --check .",
"clean": "rm -rf dist && cd client && npm run clean",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jasonesteele/yggdrasil.git"
},
"author": "Jason Steele",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonesteele/yggdrasil/issues"
},
"homepage": "https://github.com/jasonesteele/yggdrasil#readme",
"devDependencies": {
"@testing-library/user-event": "^14.4.3",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/express-pino-logger": "^4.0.3",
"@types/express-session": "^1.17.5",
"@types/node": "^18.8.2",
"@types/passport": "^1.0.11",
"@types/passport-discord": "^0.1.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-jest": "^27.1.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-no-null": "^1.0.2",
"history": "^5.3.0",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@prisma/client": "^4.4.0",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-pino-logger": "^7.0.0",
"express-session": "^1.17.3",
"graphql": "^16.6.0",
"graphql-scalars": "^1.18.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"nexus": "^1.3.0",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"pino": "^8.6.1",
"pino-http": "^8.2.1",
"prisma": "^4.4.0",
"socket.io": "^4.5.2",
"uuid": "^9.0.0",
"yup": "^0.32.11"
}
}