-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "napss_server",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:asahelcode/napss_server.git",
"author": "asahelcode <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec ts-node src/index.ts",
"build": "prisma generate && node dist/index.js",
"lint:fix": "eslint --fix src/**/*.ts",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.2",
"@prisma/client": "^5.10.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@types/qs": "^6.9.15",
"apollo-server-express": "^3.13.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.8.1",
"husky": "^9.0.11",
"nodemon": "^3.0.3",
"prisma": "^5.10.2",
"ts-node": "^10.9.2",
"typescript": "*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0"
}
}