-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.59 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.59 KB
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
{
"name": "dxjs",
"version": "2.0.5",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest --config scripts/jest/jest.config.js",
"test:cov": "jest --config scripts/jest/jest.config.js --coverage",
"build": "node scripts/build.js && tsc -p tsconfig.dts.json",
"release": "node scripts/release.js",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@chores/tsconfig": "^1.0.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.3.0",
"chalk": "^4.0.0",
"codecov": "^3.6.5",
"conventional-changelog-angular": "^5.0.6",
"conventional-changelog-cli": "^2.0.31",
"conventional-commits-parser": "^3.0.8",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-prettier": "^3.1.2",
"gzip-size": "^5.1.1",
"husky": "^4.2.5",
"invariant": "^2.2.4",
"jest": "^25.3.0",
"lerna": "^3.16.5",
"lint-staged": "^10.1.6",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"rimraf": "^3.0.2",
"rmfr": "^2.0.0",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"semver": "^7.3.2",
"typescript": "^3.8.3",
"vuepress": "^1.4.0"
},
"dependencies": {},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,ts}": [
"prettier —-write",
"eslint --fix",
"git add"
]
}
}