-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.2 KB
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
{
"name": "ts-bootstrap-projects",
"version": "1.0.0",
"description": "",
"main": "app/main.js",
"scripts": {
"build": "rm -rf ./app && tsc -p tsconfig.json",
"start": "node ./app/main.js",
"dev": "npx nodemon ./src/main.ts",
"prepare": "husky install",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/ --fix",
"prisma:studio": "prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"prisma": "^3.13.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@prisma/client": "^3.13.0",
"fastify": "^3.29.0"
},
"lint-staged": {
"src/*.(js|ts)": [
"npm run format",
"npm run lint",
"git add"
]
}
}