-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
{
"name": "blog",
"version": "1.0.0",
"description": "A blog for random articles, tech related information.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "webpack-dev-server --inline --content-base lib/ --history-api-fallback",
"start:prod": "NODE_ENV=production webpack -p && node server.js",
"build": "NODE_ENV=production webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mxviteri/blog.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bootstrap-loader": "^2.2.0",
"bootstrap-sass": "^3.3.7",
"css-loader": "^0.28.7",
"node-sass": "^4.5.3",
"resolve-url-loader": "^2.1.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.18.2",
"bootstrap": "^3.3.7",
"emailjs": "^1.0.12",
"express": "^4.16.1",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^0.11.2",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^2.30.1",
"mailgun-js": "^0.13.1",
"material-ui": "^0.20.0",
"path": "^0.12.7",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router": "^2.8.1",
"request": "^2.83.0",
"uuid": "^3.1.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"engines": {
"node": "8.4.0"
},
"bugs": {
"url": "https://github.com/mxviteri/blog/issues"
},
"homepage": "https://github.com/mxviteri/blog#readme"
}