generated from Code-4-Community/frontend-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.81 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
{
"name": "speak-for-the-trees-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.2.2",
"@craco/craco": "^7.1.0",
"@googlemaps/js-api-loader": "^1.11.1",
"@reduxjs/toolkit": "^2.0.1",
"@sentry/react": "^5.27.0",
"@sentry/tracing": "^5.27.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^7.2.1",
"@types/googlemaps": "^3.43.3",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.168",
"@types/node": "^12.19.1",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.4",
"@types/uuid": "^9.0.8",
"antd": "^4.15.1",
"axios": "^0.21.2",
"craco-antd": "^2.0.0",
"i18next": "^23.5.1",
"isomorphic-dompurify": "1.4.0",
"lodash": "^4.17.20",
"moment": "^2.29.4",
"react": "^16.13.1",
"react-csv": "^2.2.2",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-i18next": "^12.1.5",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.1.8",
"styled-components": "^5.2.1",
"typescript": "^4.1.2",
"uuid": "^9.0.1"
},
"scripts": {
"start": "nodemon -w craco.config.js -w ./antd.customize.less --exec \"npx craco start\"",
"build": "craco build",
"test": "craco test --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "tslint -p . -c tslint.json && eslint ./src/**/*.tsx",
"lint-fix": "tslint --fix -p . -c tslint.json && eslint --fix ./src/**/*.tsx",
"prettier": "prettier --check src",
"prettier-fix": "prettier --write src",
"type-check": "tsc",
"check": "yarn lint-fix && yarn prettier-fix && yarn type-check"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/react": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-plugin-styled-components": "^1.11.1",
"coveralls": "^3.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.22.0",
"nock": "^13.4.0",
"nodemon": "^2.0.20",
"prettier": "^2.1.2",
"redux-devtools": "^3.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}