-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.09 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
{
"name": "@tournant/ui",
"private": true,
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"build:changed": "lerna run build --since origin/master",
"build:ui": "vue-cli-service build",
"build": "lerna run build",
"create": "communard",
"integrity": "yarn lint && yarn test",
"lint": "eslint '**/*.{vue,js}' --fix",
"publish:packages": "lerna publish",
"publish:patch": "lerna publish patch",
"serve": "vue-cli-service serve",
"storybook": "start-storybook -p 9001",
"test:ci": "jest --ci --coverage -i",
"test:unit": "vue-cli-service test:unit",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"@babel/core": "^7.8.3",
"@storybook/addon-knobs": "5.3.21",
"@storybook/vue": "5.3.21",
"@tournant/communard": "^2.2.0",
"@vue/babel-preset-app": "^4.1.2",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/eslint-config-standard": "^5.1.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"babel-preset-vue": "^2.0.2",
"codecov": "^3.5.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^6.0.1",
"husky": "^4.0.10",
"jest": "^24.9.0",
"lerna": "^3.18.0",
"lint-staged": "^9.0.2",
"node-sass": "^4.13.0",
"prettier": "^1.17.0",
"rollup": "^1.27.8",
"rollup-plugin-alias": "^2.0.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-delete": "^1.1.0",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-vue": "^5.1.4",
"sass-loader": "^8.0.0",
"vue": "^2.6.10",
"vue-jest": "4.0.0-beta.2",
"vue-template-compiler": "^2.6.10",
"vuelidate": "^0.7.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test:unit"
}
},
"lint-staged": {
"*.{js,vue}": [
"yarn lint",
"git add"
]
},
"workspaces": [
"packages/*"
]
}