-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
{
"name": "murakami-goals",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "npm run lint-code ; npm run lint-styles",
"lint:fix": "npm run lint-code -- --fix ; npm run lint-styles -- --fix",
"lint-code": "eslint .",
"lint-styles": "stylelint --ignore-path .gitignore '**/*.{css,scss,sass}'",
"preview": "vite preview"
},
"dependencies": {
"@djthoms/pretty-checkbox": "^3.1.0",
"dexie": "^4.0.9",
"dexie-react-hooks": "^1.1.7",
"pretty-checkbox-react": "^3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"react-toastify": "^11.0.2",
"react95": "^4.0.0",
"styled-components": "^6.1.14"
},
"devDependencies": {
"@eslint/js": "9.13.0",
"@types/eslint__js": "8.42.3",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vite-pwa/assets-generator": "^0.2.4",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "15.11.0",
"prettier": "3.3.3",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1",
"stylelint-prettier": "5.0.2",
"typescript": "^5.2.2",
"typescript-eslint": "8.11.0",
"vite": "^5.2.10",
"vite-plugin-pwa": "^0.20.0",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-window": "^7.1.0"
},
"overrides": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
}
}