-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "tic-tac-vue",
"description": "A simple Tic-Tac-Toe game written in Vue",
"version": "0.5.5",
"author": "Giuseppe Sanfrancesco",
"private": true,
"type": "module",
"keywords": [
"vue",
"vuex",
"vue router",
"javascript",
"es6",
"spa",
"single page application",
"tic-tac-toe",
"tic tac toe",
"tic-tac-vue",
"tic tac vue",
"game",
"learning",
"BEM",
"SCSS",
"Atomic Design"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "git pull && vite build",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"sass": "^1.70.0",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"vuex": "^4.0.2"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^3.0.3",
"vite": "^5.0.11"
}
}