forked from raxjs/rax-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.37 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
{
"private": true,
"name": "rax-components",
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x",
"npm": "6.x"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.22",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.0",
"@babel/plugin-proposal-decorators": "7.2.0",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@types/ali-app": "^1.0.0",
"@types/jest": "^24.0.12",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"axios": "^0.21.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"babel-plugin-transform-jsx-stylesheet": "0.6.5",
"build-plugin-component": "^1.0.0",
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"codecov": "^3.1.0",
"conventional-commit-types": "^2.2.0",
"csstype": "^2.6.4",
"cz-conventional-changelog": "^2.1.0",
"driver-universal": "^1.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-rax": "^1.0.3",
"eslint": "^5.16.0",
"eslint-config-rax": "^0.0.2",
"eslint-plugin-ejs": "0.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "~7.11.1",
"findup": "^0.1.5",
"jest": "^26.0.1",
"jest-diff": "^26.0.1",
"jest-environment-node": "^26.0.1",
"husky": "^4.2.5",
"jest-localstorage-mock": "^2.3.0",
"jest-transform-css": "^2.0.0",
"lerna": "^3.18.2",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"rax": "^1.0.0",
"rax-test-renderer": "^1.0.0",
"rax-types": "^1.0.0",
"semver": "^6.3.0",
"semver-regex": "^2.0.0",
"shelljs": "0.8.3",
"typescript": "^3.8.3"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build": "node ./scripts/compile.js",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx ./",
"check-and-publish": "node ./scripts/check-and-publish",
"clean:compile": "rm -rf ./packages/*/lib",
"test": "jest --logHeapUsage --detectOpenHandles"
},
"config": {
"ghooks": {
"commit-msg": "./scripts/validate-commit-msg.js"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}