-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.7 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@path-tree/react",
"version": "0.3.2",
"description": "Provides components with a hierarchical structure.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"README.md",
"lib",
"LICENSE"
],
"keywords": [
"tree",
"hierarchical",
"file",
"path",
"react",
"components"
],
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --config ./webpack.config.ts",
"build": "yarn clean && yarn build:tsc",
"build:webpack": "NODE_ENV=development webpack --config ./webpack.config.ts",
"build:tsc": "tsc -p tsconfig.json",
"clean": "rimraf lib tsconfig.tsbuildinfo"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"@path-tree/collection": "^0.3.2"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@types/clean-webpack-plugin": "0.1.3",
"@types/gh-pages": "3.0.0",
"@types/html-webpack-plugin": "3.2.5",
"@types/marked": "1.1.0",
"@types/mini-css-extract-plugin": "0.9.1",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/resolve-pkg": "2.0.0",
"@types/webpack": "4.41.28",
"@types/webpack-dev-server": "3.11.4",
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.1.1",
"autoprefixer": "9.8.6",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "3.0.0",
"conventional-changelog-angular-all": "1.7.0",
"core-js": "3.6.5",
"css-loader": "4.3.0",
"eslint": "7.9.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.2",
"fibers": "5.0.0",
"fork-ts-checker-notifier-webpack-plugin": "3.0.0",
"fork-ts-checker-webpack-plugin": "5.2.1",
"friendly-errors-webpack-plugin": "1.7.0",
"gh-pages": "3.1.0",
"html-webpack-plugin": "4.5.2",
"husky": "4.3.0",
"lint-staged": "10.3.0",
"mini-css-extract-plugin": "0.11.2",
"optimize-css-assets-webpack-plugin": "5.0.4",
"postcss-loader": "4.3.0",
"prettier": "2.1.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-svg-loader": "3.0.3",
"regenerator-runtime": "0.13.7",
"resolve-pkg": "2.0.0",
"rimraf": "3.0.2",
"styled-components": "5.2.0",
"terser-webpack-plugin": "4.2.3",
"ts-jest": "26.3.0",
"ts-loader": "8.2.0",
"ts-node": "8.10.2",
"typescript": "4.0.3",
"webpack": "4.46.0",
"webpack-bundle-analyzer": "3.9.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2",
"webpack-manifest-plugin": "2.2.0"
},
"publishConfig": {
"access": "public"
}
}