-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.13 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
{
"name": "graphql-basis",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "NODE_PATH=./src nodemon --exec ts-node src/index.ts",
"migrate-dev": "prisma migrate dev",
"seed": "prisma seed",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^14.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "2.0.4",
"typescript": "^4.6.2"
},
"dependencies": {
"@graphql-tools/utils": "^8.6.2",
"@prisma/client": "^3.10.0",
"apollo-server": "^3.6.1",
"class-validator": "^0.13.2",
"dotenv": "^12.0.4",
"graphql": "^15.3.0",
"graphql-relay": "^0.10.0",
"prisma": "^3.10.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"type-graphql": "^1.1.1"
}
}