-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "react-worker-render",
"version": "0.0.11",
"description": "move react component lifecycle to worker",
"author": "yiminghe <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/react-worker-render.git"
},
"files": [
"lib"
],
"main": "lib/index",
"module": "lib/index",
"scripts": {
"bootstrap": "cd example && yarn install",
"deploy": "yarn run build && gh-pages -d example/build",
"pub": "yarn run compile && npm publish",
"compile": "tsc",
"build": "cd example && yarn build",
"start": "cd example && yarn start",
"lint-fix": "yarn run lint --fix",
"lint": "yarn run eslint . --ext .ts",
"test": "cypress run",
"check": "rm -rf lib && yarn run lint && tsc --noEmit && cd example && tsc --noEmit",
"prettier": "prettier --write \"{src,scripts,example}/**/*.{js,tsx,ts,jsx}\""
},
"devDependencies": {
"@babel/cli": "7.x",
"@babel/core": "7.x",
"@babel/node": "7.x",
"@babel/preset-env": "7.x",
"@babel/preset-typescript": "7.x",
"@pika/pack": "^0.5.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "27.x",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"cypress": "^9.2.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"fs-extra": "^10.0.1",
"gh-pages": "^3.2.3",
"prettier": "2.x",
"typescript": "^4.6.2"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/react": "^18.0.6",
"@types/react-addons-pure-render-mixin": "^0.14.19",
"@types/react-reconciler": "^0.26.6",
"react": "^18.0.0",
"react-addons-pure-render-mixin": "^15.6.3",
"react-reconciler": "^0.27.0"
}
}