-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "navigation",
"repository": "[email protected]:react-microfrontends/navbar.git",
"author": "",
"license": "ISC",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"start": "webpack serve",
"start:standalone": "webpack serve --env standalone",
"test": "jest --passWithNoTests",
"build": "webpack --mode=production",
"analyze": "webpack --mode=production --env analyze",
"check-format": "prettier --check .",
"format": "prettier --write .",
"watch-tests": "jest --watch",
"coverage": "jest --coverage --passWithNoTests"
},
"dependencies": {
"copy-webpack-plugin": "7.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^6.26.2",
"react-router-dom": "^6.26.2",
"single-spa-react": "^6.0.2"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.10.1",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"autoprefixer": "10.2.1",
"babel-core": "6.26.3",
"babel-eslint": "^11.0.0-beta.2",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "3.0.0",
"concurrently": "^5.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"postcss-loader": "4.1.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-config-single-spa-react": "7.0.0",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently pnpm:test pnpm:lint"
}
},
"packageManager": "[email protected]"
}