-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
33 lines (33 loc) · 985 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
{
"name": "cloudforet-console",
"version": "2.0.0-dev232",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start:web": "npm run build:packages && turbo run dev --filter=web",
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/* --parallel",
"transpile": "turbo run transpile",
"dev": "turbo run dev",
"lint": "turbo run lint --parallel",
"format": "turbo run format",
"test": "NODE_OPTIONS=--max_old_space_size=8192 turbo run test --parallel",
"prepare": "node -e \"if(require('fs').existsSync('.git')){process.exit(1)}\" || npx husky install"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"turbo": "^1.10.5"
},
"engines": {
"npm": ">=10.2.3",
"node": ">=20.10.0"
},
"packageManager": "npm@10.2.3"
}