-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 969 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
37
38
39
40
41
42
{
"name": "miner-sapper",
"version": "1.2.0",
"engines": {
"node": "14.19.0"
},
"type": "module",
"repository": "https://github.com/Pareder/miner-sapper.git",
"author": "Pareder",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"types": "vue-tsc",
"lint": "eslint --ext .ts,.vue src",
"test": "vitest --run",
"test-watch": "vitest",
"preview": "vite preview"
},
"husky":{
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run types"
}
},
"dependencies": {
"firebase": "^10.12.5",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.58.0",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^8.38.0",
"eslint-plugin-vue": "^9.11.0",
"husky": "^8.0.3",
"sass": "^1.60.0",
"typescript": "^4.9.3",
"vite": "^4.2.3",
"vitest": "^0.29.7",
"vue-tsc": "^1.2.0"
}
}