-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.69 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
{
"name": "visualize",
"version": "0.1.0",
"private": false,
"homepage": "https://part-io.github.io/visualize",
"dependencies": {
"@sitecore-jss/sitecore-jss": "^19.0.1",
"@sitecore-jss/sitecore-jss-react": "^19.0.1",
"apexcharts": "^3.32.1",
"colord": "^2.9.2",
"leaflet": "^1.7.1",
"node-sass": "^7.0.1",
"react": "^17.0.2",
"react-apexcharts": "^1.3.9",
"react-dom": "^17.0.2",
"react-jss": "^10.9.0",
"react-leaflet": "^3.2.4",
"react-responsive": "^9.0.0-beta.5",
"react-scripts": "5.0.0",
"react-scroll": "^1.8.4",
"react-spring": "^9.4.1",
"react-switch-selector": "^2.1.0",
"react-text-transition": "^1.3.0",
"react-toggle-dark-mode": "^1.0.4",
"typescript": "^4.5.4",
"use-local-storage": "^2.2.6",
"web-vitals": "^2.1.3"
},
"scripts": {
"predeploy": "yarn build",
"deploy": "gh-pages -d build",
"start": "yarn prettier:fix && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,css,sass,scss,less,html,md}\"",
"prettier:check": "prettier --check \"src/**/*.{ts,tsx,css,sass,scss,less,html,md}\"",
"lint": "tsc --noEmit && eslint src/**/*.{ts,tsx}"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/geojson": "^7946.0.8",
"@types/jest": "^27.4.0",
"@types/leaflet": "^1.7.8",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-leaflet": "^2.8.2",
"@types/react-scroll": "^1.8.3",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,tsx,js,json,css,sass,scss,less,html,md}": "yarn prettier:fix",
"src/**/*.{ts,tsx}": "yarn lint --fix"
}
}