This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 294
/
package.json
77 lines (77 loc) · 2.25 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
{
"name": "react-treebeard",
"version": "3.2.4",
"description": "React Tree View Component",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf dist && babel src/ --out-dir dist/",
"test": "jest --config=jest.config.js",
"test:watch": "jest --config=jest.config.js --watch",
"test:coverage": "jest --config=jest.config.js --coverage",
"lint": "eslint .",
"example": "webpack-dev-server --content-base ./example/ --config ./example/webpack.config.js",
"build-example": "webpack --content-base ./example/ --config ./example/webpack.config.js --output ./dist/example.js"
},
"peerDependencies": {
"@babel/runtime": ">=7.0.0",
"@emotion/styled": "^10.0.10",
"prop-types": ">=15.7.2",
"react": ">=16.7.0",
"react-dom": ">=16.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storybookjs/react-treebeard.git"
},
"keywords": [
"react",
"treeview",
"data-driven",
"customisable",
"fast"
],
"author": "Alex Curtis",
"license": "MIT",
"bugs": {
"url": "https://github.com/storybookjs/react-treebeard/issues"
},
"homepage": "https://github.com/storybooks/react-treebeard#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.0",
"@commitlint/cli": "^8.1.0",
"@commitlint/travis-cli": "^8.1.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.3.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.12.12",
"rimraf": "^3.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@emotion/core": "^10.0.17",
"@emotion/styled": "^10.0.17",
"deep-equal": "^1.1.0",
"shallowequal": "^1.1.0",
"velocity-react": "^1.4.3"
}
}