-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 911 Bytes
/
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
{
"name": "dojo-battleship",
"version": "0.0.0",
"private": true,
"homepage": "https://theodo.github.io/dojo-battleship/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --ignore-path .gitignore",
"test:unit": "vitest --environment jsdom",
"test": "yarn test:lint && yarn test:unit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"dependencies": {
"vue": "^3.3.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.7.2",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"prettier": "^3.2.5",
"sass": "^1.70.0",
"vite": "^4.5.2",
"vitest": "^1.3.1"
}
}