-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.09 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
78
79
80
81
{
"name": "react-fs-treeview",
"author": "Soubhik Chatterjee <[email protected]>",
"contributors": [
{
"name": "Soubhik Chatterjee",
"email": "[email protected]",
"url": "http://soubhik.chatterjee.pw"
}
],
"version": "0.1.11",
"private": false,
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.19",
"@fortawesome/free-solid-svg-icons": "5.9.0",
"@fortawesome/react-fontawesome": "0.1.4",
"axios": "0.19.0",
"base-64": "0.1.0",
"body-parser": "1.19.0",
"cors": "2.8.5",
"express": "4.17.1",
"fs-extra": "8.0.1",
"prop-types": "15.7.2",
"react": "^16.8.6",
"react-confirm-alert": "2.4.1",
"react-contextmenu": "2.11.0",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"rimraf": "2.6.3",
"sanitize-filename": "1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"babel-preset-react-app": "^7.0.1",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "^2.1.5",
"rimraf": "^2.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/soubhikchatterjee/react-fs-treeview.git"
},
"bugs": {
"url": "https://github.com/soubhikchatterjee/react-fs-treeview/issues"
},
"keywords": [
"treeview",
"filesystem explorer",
"file explorer",
"react treeview for files"
],
"scripts": {
"start": "react-scripts start",
"build-dev": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build": "rimraf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore \"src/lib/server/server.js\",__tests__,spec.js,test.js,__snapshots__",
"publish:npm": "npm run build && npm publish --access public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}