-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
{
"name": "paysage",
"version": "3.1.15",
"private": true,
"dependencies": {
"@dataesr/react-dsfr": "^3.4.6",
"@jonkoops/matomo-tracker-react": "^0.7.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"classnames": "^2.3.2",
"highcharts": "^10.3.1",
"highcharts-react-official": "^3.1.0",
"leaflet": "^1.9.3",
"p-limit": "^4.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.0",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"react-to-print": "^2.14.10",
"web-vitals": "^3.1.0",
"xlsx": "^0.18.5"
},
"scripts": {
"build": "react-scripts build",
"build:staging": "env-cmd -f .env.staging react-scripts build",
"deploy": "git switch main && git pull origin main --rebase --tags && git merge origin staging && npm version $npm_config_level && git push origin main --tags && git switch staging",
"eject": "react-scripts eject",
"lint": "eslint --fix src/**/*.js",
"prettier": "prettier --write **/*.js",
"start": "PORT=3001 react-scripts start",
"stylelint": "stylelint --fix **/*.scss",
"test": "npx jest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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/preset-react": "^7.18.6",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.5.0",
"eslint-config-airbnb": "^19.0.4",
"jest": "^27.5.1",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"sass": "^1.56.1",
"stylelint": "^14.15.0",
"stylelint-scss": "^4.3.0"
},
"lint-staged": {
"src/**/*.+(js)": [
"eslint --fix"
],
"src/**/*.{js,json,md}": [
"prettier --write"
],
"src/**/*.scss": [
"stylelint"
]
}
}