This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.38 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
{
"name": "dora",
"private": true,
"workspaces": [
"packages/*",
"example/*"
],
"scripts": {
"bootstrap": "yarn",
"dev": "cross-env BUILD_TYPE=dev rollup -w -c rollup.config.ts",
"build": "cross-env BUILD_TYPE=prod rollup -c rollup.config.ts",
"dev:demo": "yarn workspace create-react-app run start",
"build:demo": "yarn workspace create-react-app run build",
"clean": "lerna clean",
"clean:dist": "lerna run clean",
"test": "jest",
"test-cov": "jest --coverage",
"prepublishOnly": "npm run build",
"publish": "lerna publish --no-private",
"lint": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dora-projects/dora.git"
},
"keywords": [],
"description": "",
"author": "nanzm",
"license": "ISC",
"bugs": {
"url": "https://github.com/dora-projects/dora/issues"
},
"homepage": "https://github.com/dora-projects/dora#readme",
"dependencies": {
"@babel/runtime": "^7.14.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime-corejs3": "^7.14.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"camelcase": "^6.2.0",
"conventional-changelog": "^3.1.24",
"cross-env": "^5.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}