-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.75 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
{
"scripts": {
"start": "webpack serve",
"start:standalone": "webpack serve --env standalone",
"build": "webpack --mode=production",
"analyze": "webpack --mode=production --env analyze",
"lint": "eslint src",
"test": "jest --passWithNoTests",
"watch-tests": "jest --watch",
"check-format": "prettier --check .",
"format": "prettier --write .",
"coverage": "jest --coverage",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.13",
"autoprefixer": "^10.2.1",
"babel-eslint": "11.0.0-beta.2",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"concurrently": "^9.0.1",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"query-string": "^9.1.0",
"react-router": "^6.26.2",
"react-router-dom": "^6.26.2",
"rxjs": "^7.8.1",
"single-spa-react": "^6.0.2",
"standalone-single-spa-webpack-plugin": "^5.0.0",
"webpack": "^5.15.0",
"webpack-cli": "^5.1.4",
"webpack-config-single-spa-react": "^7.0.0",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"packageManager": "pnpm@9.11.0"
}