-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (74 loc) · 2.53 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": "jnn-file-manager",
"version": "1.0.0",
"description": "File manager to maintain file records on various levels",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"scripts": {
"start": "node server.js",
"node:start": "nodemon --exec babel-node server.js --ignore css/",
"build:dev": "webpack --config webpack.config.dev.js --progress && serve",
"build:prod": "webpack --config webpack.config.prod.js -p",
"dev:start": "webpack-dev-server --config webpack.config.dev.js --history-api-fallback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhishekthakur1995/jnn-file-manager.git"
},
"author": "Abhishek Thakur",
"license": "ISC",
"bugs": {
"url": "https://github.com/abhishekthakur1995/jnn-file-manager/issues"
},
"homepage": "https://github.com/abhishekthakur1995/jnn-file-manager/#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.2.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-react": "^7.10.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.2",
"nodemon": "^1.18.3",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"appcache-webpack-plugin": "^1.4.0",
"axios": "^0.18.0",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"chart.js": "^2.7.2",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validator": "^5.3.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"mysql": "^2.16.0",
"react": "^16.4.1",
"react-bootstrap": "^0.32.1",
"react-chartjs-2": "^2.7.4",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-validation": "^3.0.7",
"validator": "^10.5.0",
"webpack-merge": "^4.1.4"
}
}