-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 KB
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
43
44
45
{
"name": "calculator",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"test:general": "vitest",
"test:helpers": "vitest -c ./test/helpers.config.ts",
"test:components": "vitest -c ./test/components.config.ts",
"test:intg": "vitest -c ./test/intg.config.ts",
"changelog:add-and-commit": "git add CHANGELOG.md && git commit -m \"updated `CHANGELOG.md`\"",
"release:major": "changelog -M && pnpm changelog:add-and-commit && pnpm version major",
"release:minor": "changelog -m && pnpm changelog:add-and-commit && pnpm version minor",
"release:patch": "changelog -p && pnpm changelog:add-and-commit && pnpm version patch"
},
"dependencies": {
"@vue/test-utils": "^2.2.6",
"math-expression-evaluator": "^1.4.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@types/math-expression-evaluator": "^1.3.0",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-plugin-vue": "^9.8.0",
"generate-changelog": "^1.8.0",
"jsdom": "^20.0.3",
"postcss": "^8.4.20",
"sass": "^1.56.2",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vitest": "^0.25.8",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.11"
}
}