This repository was archived by the owner on Dec 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.95 KB
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": "crust-webapp-compose",
"description": "Crust Compose WebApp",
"version": "2019.3.1",
"license": "Apache-2.0",
"contributors": [
"Denis Arh <denis.arh@gmail.com>"
],
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint && stylelint '**/*.{vue,scss}' --fix",
"test:unit": "vue-cli-service test:unit",
"cdeps": "yarn upgrade corteza-webapp-compose"
},
"gitHooks": {
"pre-commit": "yarn lint"
},
"stylelint": {
"plugins": [
"stylelint-scss"
],
"extends": "stylelint-config-standard",
"rules": {
"color-hex-case": null,
"color-hex-length": null,
"no-empty-source": null,
"selector-list-comma-newline-after": null
}
},
"dependencies": {
"corteza-webapp-compose": "cortezaproject/corteza-webapp-compose.git#2019.12.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-knobs": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/vue": "^5.1.10",
"@types/lodash": "4.14.136",
"@vue/cli-plugin-babel": "3.10.0",
"@vue/cli-plugin-eslint": "3.10.0",
"@vue/cli-plugin-unit-mocha": "3.10.0",
"@vue/cli-service": "3.10.0",
"@vue/eslint-config-prettier": "5.0.0",
"@vue/eslint-config-standard": "4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-vue": "^2.0.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"core-js": "2",
"faker": "^4.1.0",
"node-sass": "4.12.0",
"nyc": "^14.1.1",
"sass-loader": "^7.0.1",
"sinon": "^7.3.2",
"storybook-addon-i18next": "1.2.0",
"storybook-vue-router": "^1.0.3",
"stylelint": "10.1.0",
"stylelint-config-standard": "18.3.0",
"stylelint-scss": "3.9.3",
"stylelint-webpack-plugin": "^0.10.5",
"vue-template-compiler": "^2.5.17"
}
}