forked from syberos-team/syberh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.61 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
93
94
95
96
{
"name": "@syberos/syberh",
"private": true,
"description": "SyberOS hybrid App快速开发框架",
"main": "index.js",
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"commit": "npx git-cz",
"docs": "cd website && docusaurus-build",
"docs:serve": "cd website && docusaurus-start",
"docs:version": "cd website && docusaurus-version",
"docs:rename-version": "cd website && docusaurus-rename-version",
"clear-all": "rimraf package-lock.json packages/*/node_modules packages/*/package-lock.json",
"bootstrap:ci": "lerna bootstrap --npm-client=yarn",
"bootstrap:lerna": "lerna bootstrap -- --ignore-engines",
"bootstrap": "npm-run-all clear-all bootstrap:lerna",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"build": "cd packages/jsbridge &&npm run build && lerna run build && cd ../syberos && node script/build.js",
"build:docs": "node ./build/docs.js",
"prettier": "prettier --write \"src/**/*.jsx\" \"src/**/*.ts\"",
"lint": "tslint packages/*/src/**/*.ts --fix",
"version": "lerna version --skip-git &&cd packages/syberos && npm run build",
"release:lerna": "lerna publish --force-publish=* --exact --skip-temp-tag",
"release:beta": "lerna publish --force-publish=* --exact --skip-temp-tag --preid=beta --npm-tag=beta",
"release": "npm-run-all build release:lerna && npm run changelog && node ./build/docs-version.js",
"publish-l": "lerna publish --conventional-commits"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.44",
"@babel/plugin-transform-react-jsx": "^7.0.0-beta.41",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0-beta.0",
"babel-preset-es2015": "^6.24.1",
"conventional-changelog-cli": "^2.0.1",
"css-loader": "^0.28.10",
"docusaurus": "^2.0.0-alpha.23",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-loader": "^2.0.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.0.6",
"husky": "^1.2.0",
"jest-dom": "^1.3.1",
"lerna": "^3.16.4",
"lint-staged": "^8.1.0",
"nerv-markdown-loader": "0.0.1",
"npm-run-all": "^4.1.2",
"ora": "^2.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.57.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^4.0.0-beta.2",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.1",
"shelljs": "^0.8.1",
"style-loader": "^0.20.3",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.0.1",
"webpack": "^3.11.0",
"webpack-cli": "^1.0.12"
},
"lint-staged": {
"*.{ts,jsx}": [
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}