-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
61 lines (61 loc) · 1.84 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
{
"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",
"format": "prettier --write .",
"check-format": "prettier --check .",
"coverage": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && concurrently yarn:test yarn:lint"
}
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.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",
"lodash": "^4.17.20",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.2",
"single-spa-react": "^4.0.0",
"style-loader": "^2.0.0",
"systemjs-webpack-interop": "^2.3.4",
"webpack": "^5.18.0",
"webpack-cli": "^4.4.0",
"webpack-config-single-spa-react": "^5.0.2",
"webpack-dev-server": "^4.0.0-beta.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"packageManager": "[email protected]"
}