-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.01 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
{
"name": "heatmap_generator",
"private": true,
"version": "0.1.0",
"homepage": "https://maslomeister.github.io/easyheatmap",
"type": "module",
"engines": {
"npm": ">=8.15.0",
"node": ">=18.7.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"postinstall": "husky install",
"prepare": "husky install",
"prettier:check": "prettier --config .prettierrc --check \"src/**/*.{js,ts,css,scss,html}\"",
"eslint:check": "eslint --config .eslintrc --fix \"src/**/*.{tsx,ts,js}\"",
"stylelint:check": "stylelint --config .stylelintrc \"src/**/*.{css,scss}\""
},
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@reduxjs/toolkit": "^1.8.3",
"file-saver": "^2.0.5",
"heatmap-ts": "^0.0.5",
"html-to-image": "^1.9.0",
"rc-slider": "^10.0.1",
"react": "^18.2.0",
"react-colorful": "^5.5.1",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-papaparse": "^4.0.4",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"regex-parser": "^2.2.11",
"usehooks-ts": "^2.6.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/node": "^18.6.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@vitejs/plugin-react": "^2.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.0",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"sass": "^1.54.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-prettier": "^2.0.0",
"typescript": "^4.6.4",
"vite": "^3.0.0"
},
"lint-staged": {
"*.{md,html}": "prettier --write",
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{css,scss}": [
"prettier --write",
"stylelint --fix"
]
}
}