forked from Greenstand/treetracker-admin-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.66 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
113
114
115
116
117
{
"name": "treetracker-admin-client",
"version": "1.132.1",
"private": true,
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.49",
"@material-ui/pickers": "^3.2.8",
"@material-ui/styles": "^4.3.0",
"@material-ui/system": "^4.3.2",
"@rematch/core": "*",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"assert": "npm:assert",
"axios": "*",
"chart.js": "^3.7.1",
"classnames": "*",
"crypto": "npm:crypto-browserify",
"d3": "^7.6.1",
"d3-selection": "^1.4.0",
"date-fns": "^2.0.0-beta.5",
"env-cmd": "^10.1.0",
"generate-password": "^1.5.1",
"geolib": "^3.3.3",
"http": "npm:stream-http",
"https": "npm:https-browserify",
"i": "*",
"import": "*",
"install": "*",
"loglevel": "^1.6.3",
"material-ui-chip-input": "^2.0.0-beta.2",
"mdi-material-ui": "*",
"mdi-svg": "*",
"npm": "*",
"os": "npm:os-browserify",
"prop-types": "*",
"react": "^18.2.0",
"react-autosuggest": "^10.0.2",
"react-chartjs-2": "^4.0.1",
"react-csv": "^2.0.3",
"react-dom": "^18.2.0",
"react-fast-compare": "^3.2.0",
"react-infinite": "*",
"react-redux": "*",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-router-dom-v5-compat": "^6.3.0",
"react-scripts": "*",
"recompose": "*",
"redux": "^4.0.5",
"stream": "npm:stream-browserify",
"typeface-roboto": "*",
"zxcvbn": "^4.4.2"
},
"scripts": {
"start": "cross-env PORT=3001 react-scripts start",
"start:dev": "env-cmd -f .env.development cross-env PORT=3001 react-scripts start",
"start:local": "env-cmd -f .env.local cross-env PORT=3001 react-scripts start",
"build": "react-scripts build",
"build:dev": "env-cmd -f .env.development npm run build && mv build build-dev",
"build:test": "env-cmd -f .env.test npm run build",
"build:staging": "env-cmd -f .env.staging npm run build",
"test": "react-scripts test --env=jsdom --setupTestFrameworkScriptFile=./src/testSetup.js",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"cypress": "DEBUG=cypress-react-unit-test cypress open",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier:fix": "prettier src/ --write || true"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@cypress/react": "^6.0.0",
"@cypress/webpack-dev-server": "^2.0.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addons": "^6.5.9",
"@storybook/react": "^6.5.9",
"cross-env": "^7.0.2",
"cypress": "^9.5.0",
"cypress-react-unit-test": "^4.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.3.5",
"postcss": "^8.4.14",
"prettier": "2.0.5",
"pretty-quick": "^3.1.0",
"react-inspector": "^3.0.2"
},
"engines": {
"node": ">= 18 < 19"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!dateformat)"
],
"moduleNameMapper": {
"d3": "<rootDir>/node_modules/d3/dist/d3.min.js",
"^d3-(.*)$": "d3-$1/dist/d3-$1"
}
}
}