-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.25 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
{
"name": "3d-tic-tac-toe",
"version": "0.0.0",
"author": "Thor Juhasz",
"description": "A nested game of Tic Tac Toe written in VueJS",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/thor-juhasz/3d-tic-tac-toe"
},
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint . -c .eslintrc.json --ext .js,.jsx,.ts,.tsx,.vue"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@headlessui/vue": "^1.7.16",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-vue": "^4.3.4",
"@vitest/coverage-v8": "0.34.3",
"@vitest/ui": "0.34.3",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/language-server": "^1.8.15",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.50.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-eslint": "^1.8.1",
"vite-svg-loader": "^4.0.0",
"vitest": "0.34.3",
"vue-eslint-parser": "^9.3.1",
"vue-tsc": "^1.8.15"
}
}