-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1000 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
{
"name": "indicisive",
"version": "0.0.1",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"postinstall": "husky install",
"dev": "turbo run dev",
"build": "turbo run build"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"caprover": "^2.2.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"turbo": "1.10.3",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.{svelte,ts}": [
"eslint --ignore-path=./.eslintignore",
"prettier --write --plugin-search-dir=. --ignore-path=./.prettierignore"
]
},
"engineStrict": true,
"engines": {
"pnpm": ">=8.5.0",
"node": ">18.0.0 <19.0.0"
}
}