-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 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
62
63
64
65
66
67
68
69
70
71
{
"name": "tw-events",
"version": "1.0.0",
"description": "Application to list events at Thoughtworks",
"main": "index.js",
"private": true,
"scripts": {
"build": "webpack",
"start": "webpack serve",
"start:dev": "webpack-dev-server",
"watch": "webpack --watch",
"lint": "eslint \"**/*.{jsx,js}\"",
"lint:fix": "eslint --fix \"**/*.{jsx,js}\"",
"test": "jest"
},
"keywords": [
"React",
"PWA"
],
"license": "MIT",
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"not kaios 2.5",
"not baidu 7.12"
],
"engines": {
"node": ">=16.13.0",
"npm": ">=8.1.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"browserslist": "^4.17.6",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^9.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.5.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}