forked from xryanmason/marks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "marks",
"version": "0.0.1",
"scripts": {
"dev": "web-ext run --config web-ext.config.js & nodemon -e css,html,json,js,ts,vue --watch src/ --exec \"npm run build-lite\"",
"build-lite": "vite build",
"build": "vue-tsc --noEmit && vite build && web-ext --config=web-ext.config.js build",
"lint": "eslint --fix src/**/*.{ts,vue}",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"vue": "^3.2.16"
},
"devDependencies": {
"@testing-library/vue": "^6.6.0",
"@types/node": "^17.0.36",
"@vitejs/plugin-vue": "^1.9.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^9.1.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.3.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-vue": "^8.1.1",
"happy-dom": "^5.3.2",
"nodemon": "^2.0.16",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7",
"typescript": "^4.7.2",
"vite": "^2.6.4",
"vitest": "^0.16.0",
"vue-tsc": "^0.3.0",
"web-ext": "^6.8.0",
"web-ext-types": "^3.2.1"
}
}