-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "@cfxjs/react-hooks",
"version": "0.0.0",
"description": "react hooks to interact with conflux network",
"main": "lib/index.js",
"module": "lib/index.js",
"author": "yqrashawn <namy.19@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-export-namespace-from": "^7.12.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.0",
"@babel/preset-env": "^7.12.1",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-console": "^1.2.2",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/addon-storysource": "^6.1.11",
"@storybook/react": "^6.1.11",
"babel-loader": "^8.1.0",
"js-conflux-sdk": "^1.5.11",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"semantic-release": "^17.2.0"
},
"files": ["src", "lib"],
"scripts": {
"prepublish": "yarn run build",
"start": "start-storybook -p 6006",
"build": "babel src -d lib --source-maps --copy-files",
"build-doc": "build-storybook"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"big.js": "^6.0.1",
"react-use": "^15.3.4",
"swr": "^0.3.5"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
}
}