-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "treehouse",
"version": "0.0.1",
"description": "Treehouse school site developed to solve a challenge",
"scripts": {
"server": "tsc --project ./server && node server/build/index.js",
"server:dev": "nodemon server/index.ts",
"server:build": "tsc --project ./server",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andressiri/Treehouse.git"
},
"author": "Andrés Siri",
"license": "ISC",
"bugs": {
"url": "https://github.com/andressiri/Treehouse/issues"
},
"homepage": "https://github.com/andressiri/Treehouse#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.6"
},
"dependencies": {
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --debug"
}
},
"lint-staged": {
"*.{js,ts}": [
"tsc -p tsconfig.json --noEmit"
]
}
}