forked from Universal-Connect-Project/ucw-app
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "ucw-app",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo build",
"copyDemoPreferences": "cp ./apps/server/cachedDefaults/testData/demoPreferences.json ./apps/server/cachedDefaults/preferences.json",
"copyTestPreferences": "cp ./apps/server/cachedDefaults/testData/testPreferences.json ./apps/server/cachedDefaults/preferences.json",
"dev": "turbo dev",
"dev:debug": "turbo dev:debug",
"start:e2e": "turbo start:e2e",
"lint": "turbo lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"pre-commit": "lint-staged",
"prepare": "husky",
"clean": "npx rimraf {apps,packages}/**/{node_modules,dist,.turbo} -g && npx rimraf node_modules"
},
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.1.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "npm@10.7.0",
"workspaces": [
"apps/*",
"packages/*"
]
}