-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 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
{
"name": "handy-services-bk",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm i && tsc",
"start:dev": "ts-node-dev src/index.ts",
"start": "node built/src/index.js > /dev/null",
"dev": "nodemon",
"format": "prettier --write \"**/*.{ts}\"",
"lint": "node_modules/.bin/eslint .",
"lint:fix": "node_modules/.bin/eslint ./ --fix",
"debug": "DEBUG=express:* nodemon server.ts",
"prepare": "husky install",
"lint:staged": "lint-staged",
"db-sync": "npx prisma db push",
"db-launch": "npx prisma studio",
"prisma-format": "prisma format",
"prisma-generate": "prisma generate",
"db-seed": "npx prisma db seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.15.1",
"@sentry/integrations": "^6.19.7",
"@sentry/node": "^6.19.7",
"apollo-server": "^3.6.7",
"apollo-server-express": "^3.6.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"jwt-decode": "^3.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.4",
"@types/node": "^17.0.24",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"prisma": "^3.15.1",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"npm run lint:fix",
"pretty-quick --staged"
]
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}