-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 940 Bytes
/
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
{
"name": "25th-web-team-1-fe",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"web": "turbo dev --filter web",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"postinstall": "husky"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-turbo": "^2.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.2.5",
"turbo": "^2.3.3",
"typescript": "5.5.4"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write -u"
]
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@vanilla-extract/css": "^1.17.0"
}
}