-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 971 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
{
"name": "everydaycooking",
"private": true,
"version": "0.0.1",
"type": "module",
"author": "Bram Bekkers",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"test": "vitest"
},
"dependencies": {
"dompurify": "^2.4.0",
"path": "^0.12.7",
"pinia": "^2.0.23",
"vue": "^3.2.37",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@types/dompurify": "^2.3.4",
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.6.0",
"prettier": "2.7.1",
"sass": "^1.55.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vitest": "^0.24.1",
"vue-tsc": "^1.0.3"
}
}