-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.35 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
{
"name": "artbuddies",
"version": "0.1.0",
"scripts": {
"development": "npm run clean && nodemon . & NODE_ENV=development webpack --watch",
"start": "npm run serve",
"serve": "forever .",
"clean": "rimraf ./server/public/",
"production": "npm run clean && NODE_ENV=production webpack -p"
},
"main": "server/index.js",
"engines": {
"node": "7.7.2"
},
"dependencies": {
"dotenv": "^4.0.0",
"forever": "^0.15.3",
"glob": "^7.1.1",
"hapi": "^16.1.0",
"hapi-devine-api-config": "^2.0.0",
"hapi-devine-autoload": "^2.0.0",
"hapi-devine-mongodb": "^1.0.0",
"hapi-devine-parse-query": "^1.0.0",
"hapi-devine-routes": "^1.0.0",
"http-client": "^4.3.1",
"inert": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^10.1.0",
"joi-objectid": "^2.0.0",
"lodash": "^4.17.4",
"rellax": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx-source": "^6.9.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.4",
"babel-plugin-transform-react-stateless-component-name": "^1.1.1",
"babel-preset-env": "^1.2.0",
"babel-preset-react": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.1",
"eslint": "^3.17.0",
"eslint-config-devine": "^1.7.0",
"eslint-loader": "^1.6.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.11.1",
"html-loader": "^0.4.4",
"image-webpack-loader": "^3.1.0",
"mobx": "^3.1.0",
"mobx-react": "^4.1.0",
"mobx-react-devtools": "^4.2.11",
"mobx-react-router": "^4.0.1",
"nodemon": "^1.11.0",
"postcss-cssnext": "^2.9.0",
"postcss-loader": "^1.2.1",
"postcss-reporter": "^3.0.0",
"postcss-will-change": "^1.1.0",
"prop-types": "^15.5.0",
"react": "^15.5.0",
"react-dom": "^15.5.0",
"react-router-dom": "^4.0.0",
"rimraf": "^2.5.4",
"style-loader": "^0.17.0",
"stylelint": "^7.8.0",
"stylelint-config-devine": "^1.1.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-config-htmls": "^1.0.1",
"webpack-config-utils": "^2.3.0"
}
}