-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 1.85 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
{
"name": "todo-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint:scripts": "vue-cli-service lint --no-fix",
"lint:styles": "stylelint **/*.{vue,scss}",
"lint": "npm run lint:scripts && npm run lint:styles"
},
"dependencies": {
"core-js": "^3.6.5",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"store": "^2.0.12",
"tailwindcss": "^1.4.6",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vue-typescript": "^0.7.0",
"vuedraggable": "^2.24.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-typescript": "~4.2.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-standard": "^5.1.0",
"@vue/eslint-config-typescript": "^5.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-junit-formatter": "^0.2.2",
"stylelint-scss": "^3.16.0",
"typescript": "~3.7.5",
"vue-cli-plugin-s3-deploy": "^4.0.0-rc3",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,scss}": [
"stylelint"
],
"*.{ts,js,vue}": [
"npm run lint:scripts"
]
}
}