-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 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
{
"name": "webapp-baseline",
"version": "0.0.1",
"description": "Baseline for creating React+Typescript web apps",
"main": "index.tsx",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --mode production",
"build:measure": "MEASURE=true webpack --mode production",
"build:analyze": "ANALYZE=true webpack --mode production",
"test": "jest --coverage src",
"test:watch": "jest src --watch",
"test:e2e": "testcafe chrome e2e/tests/**/*.test.ts",
"test:e2e:ci": "testcafe --app './scripts/serve-dist.sh' chrome:headless e2e/tests/**/*.test.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "26.0.24",
"@types/jest-each": "24.3.0",
"@types/react": "17.0.37",
"@types/react-dom": "17.0.11",
"@types/react-router-dom": "5.3.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"autoprefixer": "10.4.0",
"clean-webpack-plugin": "3.0.0",
"css-loader": "5.2.7",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-deprecation": "1.2.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.27.1",
"git-revision-webpack-plugin": "5.0.0",
"html-webpack-plugin": "5.5.0",
"http-server": "0.13.0",
"jest": "27.4.3",
"jest-each": "27.4.2",
"jest-sonar-reporter": "2.0.0",
"postcss-loader": "6.2.1",
"prettier": "2.5.1",
"source-map-loader": "3.0.0",
"speed-measure-webpack-plugin": "1.5.0",
"style-loader": "2.0.0",
"testcafe": "1.17.1",
"ts-loader": "9.2.6",
"ts-jest": "27.0.7",
"typescript": "4.5.2",
"url-loader": "4.1.1",
"webpack": "5.64.4",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "3.11.3"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"axios": "^0.21.0",
"crypto-browserify": "^3.12.0",
"ketting": "7.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ketting": "2.1.4",
"react-router-dom": "^5.2.0"
},
"browserslist": {
"production": [
"defaults"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
}
}