-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
71 lines (71 loc) · 1.83 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": "b2c",
"version": "0.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.5.0",
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^10.0.0",
"@testing-library/user-event": "^7.2.1",
"@types/googlemaps": "^3.0.0",
"@types/markerclustererplus": "^2.1.29",
"@types/node": "^14.0.26",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"node-gyp": "^8.4.1",
"node-sass": "^7.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-maps": "^9.4.5",
"react-meta-tags": "^0.7.4",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.0",
"sass": "^1.45.1",
"serve": "^11.3.2",
"ts-jest": "^27.0.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint-config-prettier": "^6.15.0",
"prettier": "^2.1.2",
"stylelint": "^14.0.0",
"stylelint-config-standard": "^23.0.0"
},
"jshintConfig": {
"esversion": 6
},
"scripts": {
"eslint:github-action": "eslint --fix src/",
"fmt": "prettier --write src/**.{json,js,ts,yml,md}",
"fmt:check": "prettier --check src/**.{json,js,ts,yml,md}",
"serve": "serve -s build",
"build-dev-and-serve": "npm run build && npm run serve",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"watch": "./node_modules/.bin/tsc --watch"
},
"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"
]
}
}