-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.91 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.91 KB
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": "new",
"version": "0.1.0",
"private": true,
"dependencies": {
"papaparse": "^5.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dropdown": "^1.11.0",
"react-router-dom": "^5.3.4",
"react-router-hash-link": "^2.4.3",
"react-scripts": "^5.0.1",
"sass": "^1.66.1",
"smoothscroll-polyfill": "^0.4.4"
},
"scripts": {
"start": "ESLINT_NO_DEV_ERRORS=true react-scripts start",
"build": "react-scripts build",
"lint": "eslint \"src/**/*.{ts,tsx}\" && npx stylelint \"src/**/*.scss\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix && npx stylelint \"src/**/*.scss\" --fix",
"test": "react-scripts test",
"eject": "react-scripts eject",
"publish": "scp -r build/* [email protected]:/var/www/cpaths/htdocs",
"publish-dev": "scp -r build/* [email protected]:/var/www/cpaths/htdocs",
"prepublish": "yarn build"
},
"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": {
"@types/papaparse": "^5.3.8",
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.1.3",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-order": "^4.1.0",
"typescript": "^4.9.5"
}
}