-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.01 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
35
36
37
38
39
40
41
{
"name": "zurimain",
"version": "0.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zurichat/zurimain"
},
"bugs": {
"url": "https://github.com/zurichat/zurimain/issues"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start": "serve -s dist/",
"build": "concurrently --kill-others-on-fail -m 1 \"yarn run clean\" \"turbo run build\"",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "yarn clean:build",
"clean:build": "rimraf './dist'",
"clean-fresh": "rimraf './node_modules' && turbo run clean"
},
"devDependencies": {
"@zuri/eslint-config-custom": "*",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"prettier": "latest",
"rimraf": "^4.0.4",
"serve": "^14.1.2",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}