-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.18 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.18 KB
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
{
"name": "@app/root-config",
"scripts": {
"start": "concurrently npm:start:*",
"lint": "eslint src --ext js,ts,tsx",
"test": "cross-env BABEL_ENV=test jest --passWithNoTests",
"format": "prettier --write .",
"check-format": "prettier --check .",
"prepare": "husky install",
"build": "concurrently npm:build:*",
"build:webpack": "webpack --mode=production",
"build:types": "tsc",
"start:root": "webpack serve --port 9000 --env isLocal",
"start:signin": "cd angular-app1 & npm run serve:single-spa:angular-app1 --development",
"start:signup": "cd angular-app2 & npm run serve:single-spa:angular-app2",
"start:home": "cd angular-app3 & npm run serve:single-spa:angular-app3",
"start:404-page": "cd app-404 & npm run serve:single-spa:app-404",
"start:dashboard": "cd app-dashboard & npm run serve:single-spa:app-dashboard",
"start:header": "cd app-header & npm run serve:single-spa:app-header",
"start:app-utility": "cd utility & npm run build && npx http-server dist --cors --port 4800"
},
"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-typescript": "^7.15.0",
"@babel/runtime": "^7.15.3",
"concurrently": "^6.2.1",
"cross-env": "^7.0.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-ts-important-stuff": "^1.1.0",
"eslint-plugin-prettier": "^3.4.1",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"serve": "^12.0.0",
"ts-config-single-spa": "^3.0.0",
"tsc-alias": "^1.8.8",
"typescript": "^4.3.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-config-single-spa-ts": "^4.0.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@angular/cli": "^17.0.7",
"@types/jest": "^27.0.1",
"@types/systemjs": "^6.1.1",
"@types/webpack-env": "^1.16.2",
"single-spa": "^5.9.3",
"single-spa-layout": "^1.6.0"
}
}