forked from zurichat/zc_main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.78 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@zuri/root-config",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/zurichat/zc_main"
},
"bugs": {
"url": "https://github.com/zurichat/zc_main/issues"
},
"license": "MIT",
"scripts": {
"start": "serve -s dist/ -p 9001",
"open": "opener http://localhost:9000",
"dev:root": "webpack serve --port 9000 --env isLocal",
"dev:topbar": "npm run dev --prefix topbar",
"dev:control": "npm run dev --prefix control",
"dev:sidebar": "npm run dev --prefix sidebar",
"dev:plugin-header": "npm run dev --prefix pluginHeader",
"dev:manage-user-modal": "npm run dev --prefix manageUserModal",
"dev:zuri-ui": "npm run dev --prefix zuriUi",
"dev:utilities": "npm run dev --prefix utilities",
"dev:marketplace": "npm run dev --prefix marketplace",
"dev": "npm-run-all --parallel \"dev:*\" \"open\"",
"lint": "concurrently yarn:lint:*",
"lint:css": "stylelint '**/*.+(css|scss|sass)'",
"lint:js": "eslint '**/*.+(js|jsx)'",
"prettify": "prettier -w .",
"prepare": "husky install",
"setup:topbar": "cd topbar && yarn",
"setup:control": "cd control && yarn",
"setup:sidebar": "cd sidebar && yarn",
"setup:plugin-header": "cd pluginHeader && yarn",
"setup:manage-user-modal": "cd manageUserModal && yarn",
"clean:fresh": "rimraf node_modules yarn.lock topbar/node_modules topbar/yarn.lock sidebar/node_modules sidebar/yarn.lock control/node_modules control/yarn.lock pluginHeader/node_modules pluginHeader/yarn.lock manageUserModal/node_modules manageUserModal/yarn.lock ",
"setup:zuri-ui": "cd zuriUi && yarn",
"setup:utilities": "cd utilities && yarn",
"setup:marketplace": "cd marketplace && yarn",
"postinstall": "concurrently --kill-others-on-fail -m 1 \"yarn:setup:*\"",
"clean": "rimraf dist",
"build": "concurrently --kill-others-on-fail -m 1 \"yarn run clean\" \"yarn:build:*\"",
"build:webpack": "webpack --mode=production",
"build:topbar": "npm run build --prefix topbar",
"build:control": "npm run build --prefix control",
"build:sidebar": "npm run build --prefix sidebar",
"build:manage-user-modal": "npm run build --prefix manageUserModal",
"build:zuri-ui": "npm run build --prefix zuriUi",
"build:utilities": "npm run build --prefix utilities",
"build:plugin-header": "npm run build --prefix pluginHeader",
"build:marketplace": "npm run build --prefix marketplace"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.3",
"concurrently": "^6.2.1",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint-config-important-stuff": "^1.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-react": "^7.26.1",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"lint-staged": ">=10",
"opener": "^1.5.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"serve": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-config-single-spa": "^5.0.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0",
"yarn-run-all": "^3.1.1"
},
"dependencies": {
"@types/jest": "^27.0.1",
"@types/systemjs": "^6.1.1",
"draft-js": "^0.11.7",
"emoji-picker-react": "^3.4.8",
"react-loader-spinner": "^4.0.0",
"eslint": "^8.0.1",
"rxjs": "^7.3.0",
"single-spa": "^5.9.3",
"webpack-config-single-spa-react": "^4.0.2"
}
}