-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
111 lines (111 loc) · 3.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@happy-plants/app-next",
"version": "2.0.0-alpha.4",
"private": true,
"description": "🌵 Web application to keep your plants happy",
"author": "Moritz Kröger <[email protected]> (https://moritz.berlin)",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"lint:style": "vue-cli-service lint:style"
},
"main": "src/main.ts",
"files": [
"dist"
],
"dependencies": {
"@happy-plants/styles": "^1.0.0",
"@sentry/browser": "^5.21.4",
"@sentry/integrations": "^5.21.4",
"@vue/composition-api": "^0.5.0",
"animejs": "^3.2.0",
"blob-util": "^2.0.2",
"core-js": "^3.6.5",
"dayjs": "^1.8.34",
"deepmerge": "^4.2.2",
"firebase": "^7.19.0",
"lodash.throttle": "^4.1.1",
"normalize.css": "^8.0.1",
"register-service-worker": "^1.7.1",
"uuid": "^8.3.0",
"vue": "^2.6.12",
"vue-a11y-dialog": "^0.5.2",
"vue-feather-icons": "^5.1.0",
"vue-meta": "^2.4.0",
"vue-router": "^3.4.3",
"vuex": "^3.5.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@ascendancyy/vue-cli-plugin-stylelint": "^1.1.2",
"@types/animejs": "^3.1.2",
"@types/jest": "^26.0.10",
"@types/lodash.throttle": "^4.1.6",
"@types/node": "^14.6.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@vue/cli-plugin-babel": "^4.5.4",
"@vue/cli-plugin-e2e-cypress": "^4.5.4",
"@vue/cli-plugin-eslint": "^4.5.4",
"@vue/cli-plugin-pwa": "^4.5.4",
"@vue/cli-plugin-router": "^4.5.4",
"@vue/cli-plugin-typescript": "^4.5.4",
"@vue/cli-plugin-unit-jest": "^4.5.4",
"@vue/cli-plugin-vuex": "^4.5.4",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.1.0",
"@vue/test-utils": "^1.0.4",
"eslint": "^7.7.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.1.2",
"lint-staged": "^10.2.13",
"postcss-calc": "^7.0.3",
"postcss-color-mod-function": "^3.0.3",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-reporter": "^6.0.1",
"postcss-url": "^8.0.0",
"prettier": "^2.1.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-processor-html": "^1.0.0",
"typescript": "^4.0.2",
"vmark": "^1.2.0",
"vmark-loader": "^1.0.0",
"vue-template-compiler": "^2.6.12",
"worker-loader": "^3.0.2"
},
"_id": "@happy-plants/[email protected]",
"bugs": {
"url": "https://github.com/morkro/happy-plants/issues"
},
"directories": {
"src": "src"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/morkro/happy-plants#readme",
"lint-staged": {
"*.js": [
"vue-cli-service lint"
],
"*.vue": [
"vue-cli-service lint"
],
"*.{vue,htm,html,css,sss,less,scss}": [
"vue-cli-service lint:style"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/morkro/happy-plants.git"
}
}