-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.81 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.81 KB
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
{
"name": "minihub",
"private": true,
"description": "MinimaOS home screen",
"version": "0.24.4",
"type": "module",
"scripts": {
"dev": "npm run info && vite",
"build": "npm run info && tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"package": "bash ./create-minima-app/package.sh",
"postbuild": "node ./create-minima-app/postbuild.js",
"copysrc": "bash ./create-minima-app/copySrcToBuild.sh",
"zip": "npm run build && npm run postbuild && npm run copysrc && npm run package",
"src:zip": "bash create-minima-app/zip.sh",
"info": "node createInfoFile.js"
},
"dependencies": {
"@types/lodash": "^4.14.195",
"@vitejs/plugin-legacy": "^4.1.1",
"axios": "^1.4.0",
"colorthief": "^2.4.0",
"date-fns": "^2.30.0",
"embla-carousel-react": "^8.0.0-rc05",
"embla-carousel-wheel-gestures": "^8.0.0-rc04",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "^18.2.0",
"react-joyride": "^2.6.2",
"react-router": "^6.14.2",
"react-router-dom": "^6.11.1",
"react-spring": "^9.7.1",
"react-toastify": "^10.0.5",
"vite-plugin-html": "^3.2.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.23",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-node-polyfills": "^0.15.0"
}
}