-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.33 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vivu",
"version": "1.0.0",
"description": "A highly scalable vue boilerplate using vite",
"main": "index.js",
"keywords": [
"vue",
"typescript",
"atomic-design",
"ddd",
"spa",
"atomic-design-example",
"ddd-example",
"boilerplate",
"vue-boilerplate",
"vite"
],
"repository": {
"type": "git",
"url": "https://github.com/logustra/vivu"
},
"bugs": "https://github.com/logustra/vivu/issues",
"author": "Faizal Andyka",
"license": "MIT",
"scripts": {
"dev": "cp env/env.development .env && vite --mode development",
"build": "cp env/env.production .env && vite build --mode production",
"serve": "vite preview",
"stylelint": "stylelint --config stylelint.config.js 'src/**/*.{vue,scss}'",
"stylelint:fix": "stylelint --config stylelint.config.js --fix 'src/**/*.{vue,scss}'",
"linter": "eslint -c .eslintrc.js --ext .js,.vue,.ts,.tsx, src",
"linter:fix": "eslint -c .eslintrc.js --fix --ext .js,.vue,.ts,.tsx, src",
"lint": "pnpm linter && pnpm stylelint",
"lint:fix": "pnpm linter:fix && pnpm stylelint:fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.5",
"@vuedx/typecheck": "^0.6.3",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"axios": "^0.21.1",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.7.0",
"husky": "^5.1.3",
"sass": "^1.32.8",
"shelljs": "^0.8.4",
"standard": "^16.0.3",
"stylelint": "^13.12.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-rscss": "^0.4.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.2.3",
"vite": "^2.0.5",
"vue": "^3.0.7",
"vue-eslint-parser": "^7.6.0",
"vue-router": "4",
"vuex": "^4.0.0"
}
}