-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 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
{
"name": "react-base",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/browser": "5.13.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^8.0.3",
"aws-amplify": "^2.2.2",
"bootstrap": "^4.4.1",
"connected-react-router": "^6.6.1",
"cross-env": "^6.0.3",
"formik": "^2.1.2",
"node-less-chokidar": "^0.4.1",
"npm-run-all": "^4.1.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.0",
"reactstrap": "^8.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"webfontloader": "^1.6.28"
},
"scripts": {
"start": "yarn run build-css && run-p -ncr watch-css start-js",
"build": "cross-env GENERATE_SOURCEMAP=false run-s -n build-css build-js",
"test": "run-s -n build-css test-js",
"start-js": "react-app-rewired start",
"build-js": "react-app-rewired build",
"test-js": "react-app-rewired test --env=jsdom",
"build-css": "node-less-chokidar src",
"watch-css": "node-less-chokidar src --watch",
"eject": "react-app-rewired eject",
"lint": "eslint ./src",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\""
},
"prettier": {
"printWidth": 120,
"bracketSpacing": true,
"trailingComma": "es5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"less": "^3.10.3",
"prettier": "^1.19.1",
"react-app-rewired": "^2.1.5"
}
}