forked from podlove/podlove-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.89 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
{
"name": "root",
"private": true,
"scripts": {
"clean": "rm -rf apps/**/dist apps/**/publish packages/**/dist packages/**/publish",
"format": "eslint --fix '**/*.{js,vue}'",
"lint": "eslint -f codeframe '**/*.{js,vue}'",
"test": "jest",
"test:dev": "jest --watchAll",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"update": "lernaupdate",
"version": "lerna version --conventional-commits --changelog-preset angular",
"postinstall": "lerna bootstrap --hoist",
"dev:player": "lerna run dev --scope @podlove/player --stream",
"dev:web-player": "lerna run dev --scope @podlove/web-player --stream",
"dev:subscribe-button": "lerna run dev --scope @podlove/subscribe-button --stream",
"dev:components": "lerna run dev --scope @podlove/components --stream",
"dev:docs-web-player": "lerna run dev --scope @podlove/docs-web-player --stream"
},
"devDependencies": {
"@babel/core": "7.10.3",
"@babel/plugin-proposal-object-rest-spread": "7.10.3",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-modules-commonjs": "7.8.3",
"@babel/plugin-transform-regenerator": "7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/polyfill": "7.7.0",
"@babel/preset-env": "7.8.7",
"@babel/runtime": "7.11.2",
"@types/jest": "26.0.3",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-bridge": "1.12.11",
"babel-eslint": "10.1.0",
"babel-jest": "24.9.0",
"core-js": "3.4.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-cypress": "2.7.0",
"eslint-plugin-jest": "23.8.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-vue": "6.1.2",
"fs-extra": "8.1.0",
"glob": "7.1.6",
"glob-promise": "3.4.0",
"husky": "4.2.3",
"jest": "24.9.0",
"jest-html-reporters": "2.0.2",
"jest-serializer-vue": "2.0.2",
"lerna": "3.20.2",
"lerna-update-wizard": "0.17.7",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"ramda": "0.27.1",
"regenerator-transform": "0.14.1",
"save-remote-file-webpack-plugin": "1.0.2",
"stream-to-promise": "3.0.0",
"vue": "2.6.12",
"vue-jest": "4.0.0-beta.2",
"vue-template-compiler": "2.6.12",
"webpack": "4.41.2"
},
"lint-staged": {
"**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --concurrent 5"
}
},
"engines": {
"node": ">=12"
},
"dependencies": {},
"jest": {
"projects": [
"packages/utils/jest.config.js",
"packages/components/jest.config.js",
"packages/player/sagas/jest.config.js",
"packages/player/state/jest.config.js"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}