-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"name": "hazal-unit-calculator",
"version": "0.0.1",
"description": "Web-based calculator for converting different units of measurement from Haza\"l era to other units",
"author": "Michael Tsaban",
"license": "MIT",
"scripts": {
"lint": "eslint src --ext .js --ext .ts --ext .vue & stylelint \"src/styles/*.{css,scss}\" \"!src/styles/*.min.*\" & vue-tsc --noEmit",
"test": "rm -fr coverage || (rmdir coverage /s /q | break) && vitest run",
"test-watch": "vitest",
"compile": "vite build",
"build": "npm run lint && npm run test && npm run compile",
"serve": "vite serve"
},
"devDependencies": {
"@types/firefox": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/coverage-v8": "^0.34.6",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.52.0",
"eslint-plugin-vue": "^9.18.0",
"jsdom": "^22.1.0",
"sass": "^1.69.4",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.0.0",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"vue": "^3.3.6",
"vue-tsc": "^1.8.20"
}
}