-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "soulsborndle",
"description": "A Wordle-like Souls-like web game - guess the boss by using hints from your past guesses!",
"author": "Malthesers (Malthe Kusk Lauritsen)",
"version": "1.2.1",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"repository": {
"type": "git",
"url": "https://github.com/malthesers/soulsborndle"
},
"dependencies": {
"fuse.js": "^7.0.0",
"pinia": "^2.1.7",
"vue": "^3.4.13"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.18.5",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vitejs/plugin-vue": "^4.4.1",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-plugin-vue": "^9.20.1",
"gh-pages": "^6.0.0",
"npm-run-all2": "^6.1.1",
"postcss": "^8.4.31",
"prettier": "^3.2.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^4.5.5",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^2.1.6"
}
}