-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "pizilla",
"version": "0.0.1",
"description": "A file sharing web application for raspberry-pi-3",
"scripts": {
"lint": "eslint .",
"build": "rm -fr build/client && NODE_ENV=production webpack --config webpack.config.prod.babel.js",
"dev-client": "webpack-dev-server --config webpack.config.babel.js",
"dev-server": "babel-watch server",
"dev": "webpack-dashboard -- concurrently \"npm run dev-server\" \"npm run dev-client\" --raw",
"start": "NODE_ENV=production node build/server/bundle.server.js"
},
"keywords": [
"file",
"ftp",
"raspberry"
],
"author": "Naveen Kumar Sangi <[email protected]>",
"repository": "https://github.com/nkprince007/PiZilla.git",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.6.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.7",
"body-parser": "^1.17.2",
"concurrently": "^3.5.0",
"cron": "^1.2.1",
"css-loader": "^0.28.7",
"ejs": "^2.5.7",
"eslint": "^4.6.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"express": "^4.15.4",
"file-loader": "^0.11.2",
"json-loader": "^0.5.7",
"materialize-css": "^0.100.2",
"mime": "^1.4.0",
"minimatch": "^3.0.4",
"multer": "^1.3.0",
"react": "^15.6.1",
"react-autosuggest": "^9.3.2",
"react-dom": "^15.6.1",
"react-dropzone-component": "^2.0.0",
"react-fa": "^4.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^4.4.1",
"redux-thunk": "^2.2.0",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"devDependencies": {
"webpack-dashboard": "^1.0.2"
}
}