-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.52 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "osmos",
"version": "2.0.3",
"description": "Lightdm greeter theme based on GLSL.",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:github": "VUE_APP_VIEW=github vue-cli-service build",
"lint": "vue-cli-service lint",
"dev": "vue-cli-service serve --open",
"dev:github": "VUE_APP_VIEW=github vue-cli-service serve --open"
},
"author": {
"name": "Warinyourself",
"email": "warinyourself@gmail.com"
},
"dependencies": {
"css-doodle": "^0.12.0",
"lodash": "^4.17.21",
"mousetrap": "^1.6.5",
"nody-greeter-types": "^1.0.7",
"nouislider": "^15.0.0",
"parallax-js": "^3.1.0",
"vue": "2.7.14",
"vue-color": "^2.8.1",
"vue-i18n": "^8.22.2",
"vue-router": "^3.2.0",
"vuex": "^3.4.0",
"webpack-glsl-loader": "^1.0.1"
},
"license": "GPL-3.0",
"devDependencies": {
"@babel/helper-module-imports": "^7.16.0",
"@types/lodash": "^4.14.178",
"@types/mousetrap": "^1.6.9",
"@types/node": "14.10.0",
"@types/vue-color": "^2.4.4",
"@vue/babel-helper-vue-jsx-merge-props": "^1.4.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-plugin-vuex": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.45",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.2",
"babel-eslint": "^10.0.3",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "3.3.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "2.7.1",
"stylus": "0.59.0",
"stylus-loader": "3.0.2",
"typescript": "4.8.4",
"vue-class-component": "7.2.6",
"vue-property-decorator": "9.1.2",
"vue-template-compiler": "2.7.14",
"vuex-module-decorators": "1.2.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --quiet"
],
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}