-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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": "react-vertical-tree",
"version": "1.1.5",
"description": "Simple & lightweight vertical tree like view.",
"main": "dist/index.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/seviltagiyeva/react-tree"
},
"homepage": "https://github.com/seviltagiyeva/react-tree",
"keywords": [
"react-graph",
"react-tree",
"react-vertical-tree"
],
"author": "Tagiyeva Sevil, mail: tsevil061@gmail.com",
"license": "ISC",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --mode development --open",
"build": "WEBPACK_ENV=build webpack",
"precommit": "NODE_ENV=production lint-staged",
"transpile": "babel src -d dist --copy-files",
"prepublish": "rm -rf ./dist && npm run transpile",
"lint": "eslint src/**/*.js --fix"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"lint-staged": "^8.1.4",
"node-sass": "^7.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"styled-components": "^4.1.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"babel-eslint": "^10.0.1",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"webfontloader": "^1.6.28"
},
"peerDependencies": {
"react": "^16.8.3",
"react-dom": "^16.8.3"
}
}