-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.76 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.76 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "your-blog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"clean": "rimraf static",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node server.js",
"lint": "eslint client server || true",
"deploy": "npm run build && modulus deploy --project-name stripe-demo"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel",
"react-transform"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.7.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.0",
"dotenv": "^1.2.0",
"ejs": "^2.3.4",
"express": "^4.13.3",
"express-session": "^1.11.3",
"gravatar": "^1.4.0",
"lodash": "^3.10.1",
"md5": "^2.0.0",
"method-override": "^2.3.5",
"mongodb-uri": "^0.9.7",
"mongoose": "^4.1.11",
"morgan": "^1.6.1",
"passport": "^0.3.0",
"passport-local": "^1.0.0",
"pretty-date": "^0.2.0",
"react-dom": "^0.14.2",
"superagent": "^1.4.0",
"twit": "^2.1.1"
},
"engines": {
"node": "4.1.1"
},
"devDependencies": {
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"chokidar": "^1.2.0",
"eslint": "^1.3.1",
"eslint-plugin-react": "^2.3.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
}
}