-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
88 lines (88 loc) · 2.52 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
85
86
87
88
{
"name": "stateview",
"version": "1.0.9",
"description": "a react render solution for Multi-State View.",
"main": "dist/index.js",
"module": "dist/stateview.esm.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/i5ting/stateview.git"
},
"keywords": [
"react",
"state",
"render"
],
"bugs": {
"url": "https://github.com/i5ting/stateview/issues"
},
"homepage": "https://github.com/i5ting/stateview#readme",
"directories": {
"doc": "docs"
},
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch --tsconfig ./src/tsconfig.json",
"build": "tsdx build --tsconfig ./src/tsconfig.json",
"test": "tsdx test",
"lint": "eslint src test demo --fix",
"format": "prettier --write \"{src,tests}/**/*.{ts,tsx}\"",
"update": "yarn upgrade-interactive",
"doc": "typedoc",
"sversion": "standard-version",
"prepublishOnly": "yarn build",
"prepare": "husky install .github/husky",
"dev": "APP_ROOT=example umi dev"
},
"author": "i5ting",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@sapphire/eslint-config": "^4.0.4",
"@sapphire/prettier-config": "^1.2.4",
"@sapphire/ts-config": "^3.1.4",
"@types/debug": "^4.1.7",
"@types/enzyme": "^3.10.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/node": "^16.11.7",
"@types/react": "^16.14.16",
"@types/react-dom": "^16.9.14",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.2.3",
"cz-conventional-changelog": "^3.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"pretty-quick": "^3.1.1",
"react-dom": "^16.12.0",
"rollup-plugin-less": "^1.1.3",
"standard-version": "^9.3.2",
"tsdx": "^0.14.1",
"typedoc": "^0.22.8",
"typescript": "^4.4.4",
"umi": "^3.2.3",
"yorkie": "^2.0.0"
},
"dependencies": {
"debug": "^4.3.3",
"react": "^16.12.0"
}
}