forked from pdlan/filestash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
{
"name": "filestash",
"version": "0.0.0",
"description": "An app to manage your files in the cloud",
"repository": "https://github.com/mickael-kerjean/filestash",
"main": "server/index.js",
"scripts": {
"dev": "NODE_ENV=development webpack --watch",
"build": "NODE_ENV=production webpack",
"test": "jest ./client/",
"lint": "eslint ./client/",
"clean": "rm -r ./dist/data/public"
},
"author": "",
"license": "ISC",
"dependencies": {
"aes-js": "^3.1.2",
"bcryptjs": "^2.4.3",
"codemirror": "^5.26.0",
"exif-js": "^2.3.0",
"little-loader": "^0.2.0",
"path-browserify": "^1.0.1",
"pdfjs-dist": "4.2.67",
"prop-types": "^15.5.10",
"react": "^16.8.0",
"react-dnd": "^14.0.0",
"react-dnd-html5-backend": "^14.1.0",
"react-dom": "^16.8.0",
"react-draggable": "^2.2.6",
"react-infinite-scroller": "^1.1.4",
"react-pdf": "7.7.3",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"react-sticky": "^6.0.2",
"react-transition-group": "^4.4.2",
"rxjs": "^5.4.0",
"video.js": "^7.0.0",
"videojs-sublime-skin": "^1.0.3",
"wavesurfer.js": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"babelify": "^9.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dart-sass-variable-loader": "^0.2.0",
"eslint": "^8.53.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.27.1",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.49.0",
"sass-loader": "^14.0.0",
"style-loader": "^0.20.2",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.9.1",
"worker-loader": "^3.0.8"
}
}