-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "minecraft-browser",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Minecraft Item Search",
"author": "Nicholas Thompson <[email protected]>",
"scripts": {
"serve": "vite serve",
"build": "vite build",
"dev": "vite",
"lint": "eslint src",
"sitemap": "node scripts/sitemap.mjs",
"download_client_data": "node scripts/download_client_data.mjs",
"parse_jar": "node scripts/parse_jar.mjs"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@vue/compat": "^3.2",
"bootstrap": "^5.3",
"core-js": "^3.6.5",
"dexie": "^4.0",
"escape-string-regexp": "^5.0.0",
"jquery": "^3.5.1",
"lodash": "^4.17.19",
"sass": "^1.43.3",
"sitemap": "^8.0",
"vue": "^3.2",
"vue-gtag": "^2.0",
"vue-router": "^4.1",
"webpack": "^5.94.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0",
"@vue/compiler-sfc": "^3.2",
"eslint": "^9.0",
"eslint-plugin-prettier": "^5.0",
"eslint-plugin-vue": "^9.3.0",
"lint-staged": "^15.0",
"node-fetch": "^3.1",
"node-stream-zip": "^1.11.3",
"prettier": "^3.0",
"vite": "^5.4",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"npm run lint"
]
}
}