-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "redis-express-webpack-starter-kit",
"version": "1.0.0",
"description": "Pdf doc manager built with node, epxress and redis",
"repository": "https://github.com/lucaronca/redis-express-webpack-starter-kit",
"main": "app.js",
"scripts": {
"start": "node app",
"start:dev": "cross-env NODE_ENV=development node --inspect app",
"start:prod": "cross-env NODE_ENV=production node app",
"test": "node_modules/.bin/mocha tests/**",
"test1": "babel-node test"
},
"keywords": [
"project",
"node",
"express",
"webpack",
"structure"
],
"author": "Luca Ronca",
"license": "MIT",
"dependencies": {
"body-parser": "^1.12.3",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.2",
"express": "^4.14.0",
"express-session": "^1.14.2",
"formidable": "^1.0.17",
"foundation-icons": "^1.0.1",
"foundation-sites": "^6.3.0",
"jquery": "^3.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"redis": "^2.6.3"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-runtime": "^6.22.0",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"chunk-manifest-webpack-plugin": "^1.0.0",
"clean-webpack-plugin": "^0.1.14",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"mocha": "^2.2.4",
"node-sass": "^4.1.1",
"open": "0.0.5",
"optimize-css-assets-webpack-plugin": "^1.3.0",
"react-hot-loader": "^1.3.1",
"resolve-url-loader": "^1.6.1",
"sass-loader": "^4.1.1",
"script-loader": "^0.7.0",
"should": "^6.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-manifest-plugin": "^1.1.0",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "^1.1.1"
}
}