-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "plurall-front-end-challenge",
"private": false,
"version": "0.1.0",
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"client-oauth2": "^4.3.3",
"plurall-footer": "^2.4.29",
"plurall-header": "^5",
"plurall-ui": "^0.3.0",
"prop-types": "^15.8.1",
"query-string": "^7.1.1",
"querystring-es3": "^0.2.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router-dom": "5.1.2",
"react-scripts": "4.0.3",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.2",
"eslint-config-plurall": "^1.5.28",
"eslint-plugin-prettier": "^3.0.0",
"jsencrypt": "^3.0.0-rc.1",
"lint-staged": "^7.0.0",
"opn": "^5.4.0",
"prettier": "^1.15.2",
"sass": "^1.53.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --no-semi --trailing-comma all --write",
"git add"
]
},
"scripts": {
"build": "react-scripts build",
"lint": "eslint src/",
"precommit": "lint-staged",
"start": "react-scripts start",
"test": "react-scripts test"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}