-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 3.15 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
{
"name": "@planetar/monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"audit": "npm audit fix && lerna-audit && lerna bootstrap",
"commit": "git-cz",
"dev": "npm run start:dev && cd packages/dev && npm run dev",
"dev-tsx": "npm run start:dev && cd packages/dev-tsx && npm run dev",
"test": "lerna run test",
"build": "npm run start:build && lerna run build && npm run build:vue-int",
"build:vue-int": "lerna run vue-int && ts-node scripts/vueInt.ts",
"build:favicon": "copyfiles --up 1 'media' packages/docs/public",
"build-and-publish": "npm run build && git add -A && git commit -m \"chore: build\" && npm run publish",
"publish": "lerna publish && npm run publish:post",
"publish:post": "npm run start:dev && git add -A && git commit -m \"chore: post-build\" && git push",
"replace:dist-src": "replace-in-files --string='\"module\": \"dist/index.js\"' --replacement='\"module\": \"src/index.js\"' 'packages/*/package.json'",
"replace:src-dist": "replace-in-files --string='\"module\": \"src/index.js\"' --replacement='\"module\": \"dist/index.js\"' 'packages/*/package.json'",
"replace:node_modules-styles": "replace-in-files --string=\"@import 'node_modules/@planetar/styles/variables'\" --replacement=\"@import '@planetar/styles/variables'\" 'packages/**/*.vue'",
"replace:styles-node_modules": "replace-in-files --string=\"@import '@planetar/styles/variables'\" --replacement=\"@import 'node_modules/@planetar/styles/variables'\" 'packages/**/*.vue'",
"start:dev": "npm run replace:dist-src && npm run replace:node_modules-styles",
"start:build": "npm run replace:src-dist && npm run replace:styles-node_modules",
"dep:update-all": "ncu --target minor -u && lerna exec 'ncu --target minor -u' && npm i",
"dep:check-for-updates": "ncu --target minor && lerna exec 'ncu --target minor'",
"dep:reinstall-all": "lerna clean -y && rimraf package-lock.json && rimraf node_modules && npm i"
},
"devDependencies": {
"@types/fs-extra": "^9.0.10",
"@types/node": "^14.14.37",
"@types/webpack-env": "^1.16.0",
"autoprefixer": "^9.8.6",
"chalk": "^2.4.2",
"commitizen": "^4.2.3",
"copyfiles": "^2.4.1",
"cssnano": "^4.1.11",
"cz-conventional-changelog": "^3.3.0",
"fs-extra": "^8.1.0",
"lerna": "^3.22.1",
"lerna-audit": "^1.3.2",
"npm-check-updates": "^9.2.4",
"open": "^6.4.0",
"postcss": "^7.0.35",
"postcss-rtl": "^1.7.3",
"prettier": "^2.2.1",
"replace-in-files-cli": "^0.3.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-vue": "^5.1.9",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"uglify-es": "^3.3.10",
"vue-compile": "^0.6.2",
"vue-intellisense": "^0.2.1",
"vue-template-compiler": "^2.6.12",
"zlib": "^1.0.5"
},
"engines": {
"node": ">= 14.0.0",
"npm": ">= 7.8.0"
},
"author": "Luca Ban - Mesqueeb",
"license": "MIT",
"homepage": "https://github.com/cycraft/planetar#readme",
"bugs": {
"url": "https://github.com/cycraft/planetar/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}