-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.31 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
{
"name": "@antdex/react-json-tree",
"version": "1.0.0",
"main": "lib/index.js",
"typing": "lib/index.d.ts",
"repository": "[email protected]:antdex/react-json-tree.git",
"author": "newraina <[email protected]>",
"keywords": ["react", "component", "antd", "json view", "tree view"],
"license": "MIT",
"scripts": {
"start": "parcel example/index.html --open",
"build:demo": "parcel build example/index.html --public-url /react-json-tree/ --no-source-maps",
"build": "NODE_ENV=production babel src --out-dir lib --extensions '.ts,.tsx'",
"prepublishOnly": "yarn build",
"deploy": "yarn build:demo && gh-pages -d dist",
"type-check": "tsc"
},
"peerDependencies": {
"antd": "4"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/lodash": "^4.14.116",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"antd": "4",
"gh-pages": "^2.0.0",
"parcel-bundler": "^1.10.0",
"prettier": "^1.14.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"typescript": "^3.0.3",
"utility-types": "^2.1.0"
},
"dependencies": {
"lodash": "^4.17.11",
"styled-components": "^3.4.9"
}
}