-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.9 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
{
"name": "scout",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@reach/alert": "^0.10.5",
"@reach/dialog": "^0.10.5",
"@reach/router": "^1.3.4",
"@reach/tooltip": "^0.10.5",
"@react-google-maps/api": "^2.18.1",
"@sendgrid/mail": "^7.7.0",
"isomorphic-unfetch": "^3.1.0",
"notifications-node-client": "^5.2.3",
"npm-run-all": "^4.1.5",
"query-string": "^6.14.1",
"react": "^16.14.0",
"react-app-polyfill": "^1.0.6",
"react-dom": "^16.14.0",
"react-ga": "^3.3.1",
"react-helmet": "^6.1.0",
"react-scripts": "3.4.1",
"styled-components": "^5.3.9"
},
"devDependencies": {
"axe-core": "^4.6.3",
"chalk": "^4.1.2",
"cypress": "^10.11.0",
"cypress-axe": "^1.4.0",
"dotenv": "^8.6.0",
"husky": "^4.3.8",
"jest": "^24.9.0",
"lint-staged": "^10.5.4",
"prettier": "2.2.1",
"progress-bar-webpack-plugin": "^2.1.0",
"webpack": "4.42.0",
"webpack-bundle-analyzer": "^4.8.0"
},
"scripts": {
"dev": "run-s add-public-files dev:app",
"dev:app": "react-scripts start",
"build": "run-s add-public-files build:app",
"build:app": "react-scripts build",
"add-public-files": "node jobs/add-public-files",
"test": "run-s test:*",
"test:unit": "jest",
"test:cypress": "cypress open --e2e",
"eject": "react-scripts eject",
"analyse": "node jobs/analyse",
"lint": "prettier --check ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,md}": "prettier --write"
}
}