-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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
{
"name": "react-treeviewer",
"description": "Customizable Treeviewer built in react for visualizing hierarchical data.",
"version": "1.0.0",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/arthurchipdean/react-treeviewer.git"
},
"homepage": "https://github.com/arthurchipdean/react-treeviewer",
"keywords": [
"react",
"tree",
"treeview",
"hierarchical",
"file system"
],
"main": "index.js",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"coveralls": "^3.0.2",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^5.9.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^15.1.1",
"jest-cli": "^15.1.1",
"lodash": "^4.17.11",
"react-addons-test-utils": "^15.3.2",
"react-scripts": "^2.1.1",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-collapse": "^4.0.3",
"react-fontawesome": "^1.2.0"
},
"scripts": {
"start": "webpack --watch",
"start:dev": "webpack-dev-server",
"test": "node node_modules/jest/bin/jest.js --env=jsdom",
"test:watch": "node node_modules/jest/bin/jest.js --env=jsdom --watch",
"test-coverage": "node node_modules/jest/bin/jest.js --env=jsdom --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"eject": "react-scripts eject"
}
}