generated from Alex4386/typescript-kickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "meiling-app-devenv-v0",
"version": "0.0.1",
"description": "A Repository for creating meiling api apps",
"main": "dist/",
"repository": "https://github.com/Stella-IT/meiling-app-devenv-v0",
"author": "Alex4386 <[email protected]>",
"license": "WTFPL",
"dependencies": {
"axios": "^0.21.1",
"prisma": "^2.16.1",
"typescript": "^4.0.5"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.7",
"prettier": "^2.1.2",
"ts-node": "^9.0.0"
},
"scripts": {
"debug": "ts-node ./src/",
"build": "tsc",
"start:dev": "nodemon",
"start": "tsc && NODE_ENV=production node ./dist/",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}