-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.1 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
{
"name": "web.voudeonibus.com",
"version": "1.0.0",
"description": "Vou de ônibus - Web",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "rimraf dist && NODE_ENV='development' webpack --config ./webpack.config.js --progress --profile --colors",
"prod": "rimraf dist && NODE_ENV='production' webpack --config ./webpack.production.config.js --progress --profile --colors",
"heroku": "webpack --config ./webpack.production.config.js --progress --colors && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voudeonibus/web.voudeonibus.com.git"
},
"author": "Lucas",
"license": "MIT",
"bugs": {
"url": "https://github.com/voudeonibus/web.voudeonibus.com/issues"
},
"homepage": "https://github.com/voudeonibus/web.voudeonibus.com#readme",
"dependencies": {
"autoprefixer": "^6.5.3",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"classnames": "^2.2.5",
"css-loader": "^0.25.0",
"css-mqpacker": "^5.0.1",
"cssnano": "^3.8.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"lodash": "^4.17.2",
"lost": "^7.1.1",
"node-sass": "^3.13.0",
"normalize-scss": "^6.0.0",
"normalize.css": "^5.0.0",
"postcss-font-magician": "^1.5.0",
"postcss-loader": "^1.1.1",
"qs": "^6.3.0",
"react": "~15.3.2",
"react-dom": "~15.3.2",
"react-ga": "^2.1.2",
"react-headroom": "^2.1.3",
"react-picture": "0.0.4",
"react-router": "^3.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"serve-favicons": "^2.1.5",
"serve-static": "^1.11.1",
"stats-webpack-plugin": "^0.4.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.1"
},
"devDependencies": {
"copy-webpack-plugin": "^4.0.1"
}
}