forked from bcgov/range-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "range-web",
"version": "1.0.0",
"description": "The Range Mobile Pathfinder project is developing a suite of applications to support the sustainable management of cattle range on crown lands in British Columbia.",
"private": false,
"author": "Kyubin Han <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://web-range-myra-prod.pathfinder.gov.bc.ca",
"dependencies": {
"@loadable/component": "^5.12.0",
"@material-ui/core": "^4.9.4",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.45",
"@react-pdf/renderer": "^1.6.7",
"@testing-library/jest-dom": "^4.2.3",
"@testing-library/react": "^9.3.2",
"axios": "^0.19.0",
"axios-mock-adapter": "^1.17.0",
"classnames": "^2.2.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"formik": "^1.5.8",
"formik-semantic-ui": "^0.10.0",
"jest-localstorage-mock": "^2.3.0",
"jspdf": "^1.5.3",
"jspdf-autotable": "^3.0.10",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"lodash.debounce": "^4.0.8",
"moment": "^2.22.2",
"node-sass": "^4.10.0",
"normalizr": "^3.4.0",
"pikaday": "^1.8.0",
"prop-types": "^15.6.2",
"puppeteer": "^1.18.1",
"react": "^16.6.1",
"react-app-polyfill": "^0.2.0",
"react-dom": "^16.6.1",
"react-pdf": "^3.0.6",
"react-popper": "^1.3.7",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"react-scroll": "^1.7.13",
"react-select": "^3.0.8",
"react-test-renderer": "^16.6.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"semantic-ui": "^2.4.2",
"semantic-ui-calendar-react": "^0.15.3",
"semantic-ui-react": "^0.88.1",
"swr": "^0.1.10",
"use-query-params": "^0.4.5",
"uuid-v4": "^0.1.0",
"yup": "^0.27.0"
},
"scripts": {
"start": "react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"test:ci": "CI=true npm test",
"eject": "react-scripts eject",
"pretest": "prettier --list-different \"**/*.js\"",
"prettier": "prettier --write \"**/*.js\"",
"eslint": "eslint '**/*.js'",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 9",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}",
"!**/semantic/**",
"!src/components/routes/*.js",
"!src/components/rangeUsePlanPage/pdf/**",
"!src/store/*.js",
"!src/index.js",
"!src/registerServiceWorker.js"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@storybook/addon-actions": "^5.2.6",
"@storybook/addon-knobs": "^5.2.6",
"@storybook/addon-links": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@twostoryrobot/eslint-config": "^2.2.0",
"@twostoryrobot/prettier-config": "^2.0.1",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-jest": "^21.27.2",
"findup-sync": "^4.0.0",
"husky": "^2.7.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretest && npm run eslint"
}
}
}