-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 loc) · 2.22 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
{
"name": "pubnow-frontend",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:admin": "lerna run build --scope @pubnow/admin",
"build:website": "lerna run build --scope @pubnow/website",
"dev": "lerna run --parallel dev",
"dev:web": "lerna run dev --parallel --scope @pubnow/website",
"dev:web:local": "lerna run dev:local --parallel --scope @pubnow/website",
"dev:admin": "lerna run dev --parallel --scope @pubnow/admin",
"dev:admin:local": "lerna run dev:local --parallel --scope @pubnow/admin",
"clean": "rimraf packages/**/dist packages/**/.nuxt",
"docs": "lerna run dev --parallel --scope={@pubnow/ui,@pubnow/docs}",
"prebuild": "yarn clean",
"test": "jest",
"test-ci": "yarn build && yarn test --coverage --ci --maxWorkers=4 --no-cache"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"roots": [
"packages/"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.vue$": "vue-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"packages/ui/src/**/*.{vue,js}"
],
"snapshotSerializers": [
"jest-serializer-vue"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"concurrently": "^4.1.0",
"husky": "^2.4.0",
"jest": "^24.8.0",
"jest-serializer-vue": "^2.0.2",
"lerna": "^3.15.0",
"npm-run-all": "^4.1.5",
"postcss-url": "^8.0.0",
"rimraf": "^2.6.3",
"rollup": "^1.15.1",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-vue": "^5.0.0",
"vue": "^2.6.10",
"vue-jest": "4.0.0-beta.2",
"vue-template-compiler": "^2.6.10"
}
}