-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "boilerplate-vuejs-cms",
"version": "1.0.0",
"private": false,
"author": {
"name": "Chain Nguyễn",
"email": "ntrungtn@gmail.com",
"url": "https://chainnguyen.github.io/chain-curriculum-vitae/"
},
"repository": {
"type": "git",
"url": "https://github.com/chainnguyen/boilerplate-vuejs-cms.git"
},
"keywords": [
"vue",
"vuex",
"vue-router",
"vee-validate",
"vue-i18n",
"ant-design",
"cms"
],
"scripts": {
"serve": "vue-cli-service serve",
"build:development": "NODE_ENV=production vue-cli-service build --mode development",
"build:staging": "NODE_ENV=production vue-cli-service build --mode staging",
"build:production": "NODE_ENV=production vue-cli-service build --mode production",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"lint:eslint": "eslint --max-warnings 0 \"src/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier . --write \"src/**/*.{js,json,tsx,html,md}\"",
"format": "npm run lint:eslint && npm run lint:prettier"
},
"dependencies": {
"vue": "^2.6.14",
"vuex": "^3.4.0",
"vue-i18n": "^8.18.1",
"vue-router": "^3.0.1",
"vee-validate": "^3.3.2",
"axios": "^1.2.1",
"js-cookie": "^2.2.1",
"moment": "^2.28.0",
"moment-timezone": "^0.5.31",
"ant-design-vue": "^1.7.8",
"sass-loader": "7.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"autoprefixer": "^7.1.2",
"css-loader": "^0.28.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"eslint-config-prettier": "^8.3.0",
"lodash-es": "^4.17.15",
"sass": "^1.56.1",
"node-notifier": "^5.1.2",
"shipit-cli": "^5.3.0",
"shipit-deploy": "^5.3.0",
"shipit-slack": "^0.1.3",
"vue-template-compiler": "^2.6.14"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 6.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}