-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.19 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": "dapp_store",
"private": true,
"description": "Minidapp store to download all your favourite apps!",
"version": "1.1.10",
"type": "module",
"scripts": {
"dev": "vite",
"build": "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": "node --no-warnings --insecure-http-parser --http-parser=legacy ./create-minima-app/scripts.js zip",
"minima:install": "node --no-warnings --insecure-http-parser --http-parser=legacy ./create-minima-app/scripts.js install",
"minima:update": "npm run zip && node --no-warnings --insecure-http-parser --http-parser=legacy ./create-minima-app/scripts.js update",
"minima:uninstall": "node --no-warnings --insecure-http-parser --http-parser=legacy ./create-minima-app/scripts.js uninstall",
"minima:refresh": "npm run zip && npm run uninstall && npm run install"
},
"dependencies": {
"@types/lodash": "^4.14.195",
"archiver": "^7.0.1",
"axios": "^1.4.0",
"date-fns": "^2.30.0",
"embla-carousel-react": "^8.0.0-rc05",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.11.2",
"react-slide-routes": "^3.0.3",
"react-spring": "^9.7.1",
"sqlstring": "^2.3.3",
"string-sanitizer": "^2.0.2",
"vite-plugin-html": "^3.2.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/sqlstring": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-legacy": "^4.1.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",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.2"
}
}