-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
{
"name": "palettejuicer",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build-ghpages": "tsc && vite build --base=/palettejuicer/",
"test": "vitest",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"src/**/*.{ts,tsx,scss}\"",
"postinstall": "patch-package",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"class-transformer": "^0.5.1",
"colorjs.io": "github:color-js/color.js",
"hex-rgb": "^5.0.0",
"immer": "^10.0.4",
"native-file-system-adapter": "^3.0.1",
"overlayscrollbars": "^2.7.2",
"overlayscrollbars-react": "^0.5.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"reactjs-popup": "^2.0.6",
"reflect-metadata": "^0.2.2",
"rgb-hex": "^4.1.0",
"use-immer": "^0.9.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.12.10",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"husky": "^9.0.11",
"modern-normalize": "^2.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"rollup-plugin-license": "^3.3.1",
"sass": "^1.75.0",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0"
}
}