-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.47 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
{
"name": "rax-hooks",
"description": "Contains rax hooks that are used very frequently",
"scripts": {
"start": "npm run clean && node ./scripts/compile-packages.js --watch",
"build": "npm run clean && node ./scripts/compile-packages.js",
"bootstrap": "lerna bootstrap",
"check-and-publish": "npm install && npm run build && node ./scripts/check-and-publish.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint-fix": "eslint --ext .js,.jsx,.ts,.tsx ./ --fix",
"exact-install": "lerna exec -- npm install --no-package-lock",
"test": "jest --logHeapUsage --detectOpenHandles",
"clean": "rm -rf ./packages/*/lib && rm -rf ./packages/*/es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raxjs/rax-hooks.git"
},
"keywords": [
"rax",
"hooks"
],
"config": {
"ghooks": {
"commit-msg": "./scripts/validate-commit-msg.js"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverage": true,
"setupFiles": [
"<rootDir>/node_modules/regenerator-runtime/runtime"
]
},
"bugs": {
"url": "https://github.com/raxjs/rax-hooks/issues"
},
"license": "BSD-3-Clause",
"homepage": "https://github.com/raxjs/rax-hooks#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@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-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"axios": "^0.21.1",
"babel-eslint": "10.0.1",
"babel-jest": "^23.6.0",
"babel-merge": "^3.0.0",
"babel-plugin-transform-jsx-stylesheet": "^0.6.8",
"babel-preset-rax": "^1.0.0-beta.0",
"chalk": "^2.4.2",
"chokidar": "^3.1.0",
"conventional-commit-types": "^2.2.0",
"cz-conventional-changelog": "^2.1.0",
"driver-server": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-rax": "^0.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "~7.11.1",
"findup": "^0.1.5",
"glob": "^7.1.6",
"jest": "^26.6.3",
"lerna": "^3.19.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"rax": "^1.1.0",
"rax-test-renderer": "^1.0.0",
"semver": "^7.1.2",
"semver-regex": "^2.0.0",
"shelljs": "0.8.3"
}
}