forked from sovereign-nature/deep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 915 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": "identifier",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --no-daemon",
"dev": "turbo run dev --parallel --no-daemon",
"lint": "turbo run lint --no-daemon",
"test": "turbo run test --no-daemon",
"codegen": "turbo run codegen --no-daemon",
"format": "prettier --write \"**/*.{js,ts,vue,md}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --quiet"
],
"*.{json,md,js,ts,vue}": [
"prettier --write"
]
},
"devDependencies": {
"eslint-config-sni": "*",
"@sni/prettier-config": "*",
"prettier": "2.8.0",
"turbo": "1.6.3",
"husky": "8.0.2",
"lint-staged": "13.0.4",
"turbo-ignore": "0.4.0"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}