-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
76
77
78
{
"name": "truck-yeah",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"lint": "eslint client server || true",
"test": "npm run lint",
"clean": "rimraf static",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"postinstall": "webpack --config ./webpack.config.prod.js --progress --colors",
"start": "node server.js",
"deploy": "npm run build && modulus deploy --project-name truck-yeah"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel",
"react-transform"
],
"author": "",
"dependencies": {
"async": "^1.5.0",
"axios": "^0.5.4",
"babel-loader": "^5.1.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.0",
"dotenv": "^1.2.0",
"ejs": "^2.3.3",
"express": "^4.13.3",
"express-session": "^1.11.3",
"lodash": "^3.10.1",
"material-ui": "^0.13.2",
"method-override": "^2.3.5",
"moment": "^2.10.6",
"mongo": "^0.1.0",
"mongodb-uri": "^0.9.7",
"mongoose": "^4.1.11",
"morgan": "^1.6.1",
"passport": "^0.3.0",
"passport-local": "^1.0.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-gmaps": "^1.0.4",
"react-tap-event-plugin": "^0.2.1",
"superagent": "^1.4.0",
"twit": "^2.1.0",
"webpack": "^1.9.6"
},
"engines": {
"node": "4.2.x"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^5.0.0",
"babel-eslint": "^4.1.3",
"babel-plugin-react-transform": "^1.1.1",
"chokidar": "^1.2.0",
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.6.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
}
}