-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "hicord",
"version": "0.1.0",
"description": "",
"license": "MIT OR Apache-2.0",
"scripts": {
"dev": "vite",
"build": "pnpm run type-check && vite build",
"serve": "vite preview",
"type-check": "tsc -p tsconfig.json",
"lint": "eslint --cache --ext .ts,.tsx .",
"lint:fix": "eslint --cache --fix --ext .ts,.tsx .",
"fmt": "prettier --write --cache .",
"fmt:check": "prettier --check --cache .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache",
"prettier --write --cache"
],
"*.{json,yaml,yml}": [
"prettier --write --cache"
]
},
"devDependencies": {
"@types/babel__core": "^7.20.0",
"@types/eslint": "^8.37.0",
"@types/luxon": "^3.3.0",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitest/coverage-c8": "^0.24.5",
"@vitest/ui": "^0.24.5",
"autoprefixer": "^10.4.14",
"daisyui": "^2.51.6",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-solid": "^0.7.4",
"husky": "^8.0.3",
"jsdom": "^20.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "2.7.1",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.5",
"vite": "3.1.6",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.24.5"
},
"dependencies": {
"@picmo/popup-picker": "^5.8.2",
"@solid-primitives/resize-observer": "^2.0.15",
"@solidjs/testing-library": "^0.7.0",
"@types/uuid": "^9.0.1",
"luxon": "^3.3.0",
"material-symbols": "^0.2.15",
"picmo": "^5.8.2",
"skyway-js": "^4.4.5",
"solid-js": "^1.7.3",
"uuid": "^9.0.0"
}
}