-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 944 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
32
33
34
35
36
{
"name": "minesweeper",
"description": "A Vue.js project",
"author": "Noah H. Smith <noah@batteredoats.com>",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore --fix src",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"common-tags": "^1.8.0",
"lodash": "^4.17.21",
"sass": "^1.59.3",
"vite": "^4.2.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@types/common-tags": "^1.8.1",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^8.36.0",
"eslint-plugin-vue": "^8.7.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vitest": "^0.29.3"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}