-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 2.26 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
{
"name": "theme",
"description": "The default theme for LogChimp",
"version": "0.2.0-beta.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/logchimp/theme.git"
},
"bugs": {
"url": "https://github.com/logchimp/theme/issues"
},
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "jest --config ./jest.config.js",
"eslint:check": "eslint './**/*.{vue,js}'",
"eslint:fix": "yarn eslint:check --fix",
"prettier:format": "prettier --write .",
"stylelint": "stylelint --syntax sass './src/styles/**/*.sass'",
"storybook": "start-storybook -p 6006 --static-dir ./.storybook/static",
"build-storybook": "build-storybook --static-dir ./.storybook/static"
},
"dependencies": {
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"lucide-vue": "^0.16.29",
"node-sass": "7.0.0",
"sass-loader": "^10.1.1",
"vue": "^2.6.14",
"vue-clickaway": "^2.2.2",
"vue-gtag": "^1.16.1",
"vue-infinite-loading": "^2.4.5",
"vue-meta": "^2.4.0",
"vue-router": "^3.5.3",
"vuedraggable": "^2.24.3",
"vuex": "^3.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.4",
"@storybook/addon-links": "^6.3.10",
"@storybook/addons": "^6.4.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/theming": "^6.3.12",
"@storybook/vue": "^6.4.0",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.3",
"babel-plugin-transform-require-context": "^0.1.1",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-vue": "^7.19.1",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"sass": "^1.45.0",
"style-loader": "2.0.0",
"stylelint": "^13.13.1",
"stylelint-scss": "^3.21.0",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14"
},
"keywords": [
"logchimp",
"theme",
"logchimp-theme",
"codecarrot"
],
"engines": {
"node": ">=12.18.4",
"yarn": ">=1.22"
}
}