-
Notifications
You must be signed in to change notification settings - Fork 864
/
package.json
49 lines (49 loc) · 1.36 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
42
43
44
45
46
47
48
49
{
"name": "zc-main",
"version": "v1.0.0",
"author": "Zurichat",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zurichat/zc_main"
},
"bugs": {
"url": "https://github.com/zurichat/zc_main/issues"
},
"homepage": "https://zuri.chat/",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "serve -s dist/",
"dev": "lerna run dev --parallel",
"postinstall": "lerna bootstrap",
"format": "lerna run prettify --parallel",
"lint": "concurrently yarn:lint:*",
"lint:js": "eslint '**/*.+(js|jsx)'",
"build": "concurrently --kill-others-on-fail -m 1 \"yarn run clean\" \"lerna run build\"",
"prepare": "husky install",
"clean": "yarn clean:build",
"clean:build": "rimraf './dist'",
"clean-fresh": "rimraf './node_modules' && lerna clean"
},
"devDependencies": {
"concurrently": "^6.3.0",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.1.0",
"eslint-config-important-stuff": "^1.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.2",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"opener": "^1.5.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"serve": "^12.0.0"
}
}