forked from samatechtw/nx-vue3-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.92 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nx-vue3-vite",
"description": "NX Plugin for generating opinionated Vue3+Vite+PostCSS applications",
"version": "0.13.2",
"license": "MIT",
"scripts": {
"nx": "nx",
"build": "nx build vue3-vite",
"test": "nx test vue3-vite",
"lint": "nx workspace-lint && nx lint vue3-vite",
"e2e": "nx e2e vue3-vite",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"commit-msg": "node tools/scripts/verifyCommit.js",
"prepare": "husky install"
},
"private": true,
"devDependencies": {
"@angular-devkit/schematics": "^13.0.4",
"@cypress/vite-dev-server": "^2.2.1",
"@nrwl/cli": "13.2.4",
"@nrwl/devkit": "13.2.4",
"@nrwl/eslint-plugin-nx": "13.2.4",
"@nrwl/jest": "13.2.4",
"@nrwl/linter": "13.2.4",
"@nrwl/node": "13.2.4",
"@nrwl/nx-plugin": "^13.2.4",
"@nrwl/tao": "13.2.4",
"@types/jest": "27.0.2",
"@types/node": "16.11.3",
"@typescript-eslint/eslint-plugin": "~4.29.1",
"@typescript-eslint/parser": "~4.33.0",
"@vitejs/plugin-vue": "1.10.2",
"chalk": "^4.1.2",
"conventional-github-releaser": "^3.1.5",
"cypress": "^8.7.0",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"husky": "^7.0.4",
"jest": "27.3.1",
"prettier": "^2.4.1",
"readline": "^1.3.0",
"ts-jest": "27.0.7",
"ts-node": "~10.3.1",
"tslib": "^2.3.1",
"typescript": "~4.4.4",
"vite": "^2.7.1",
"vitepress": "^0.20.4"
}
}