-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "DONTFORGETTOSETUPTHIS",
"version": "0.1.0",
"description": "",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node webpack/devServer.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "DONTFORGETTOSETUPTHIS"
},
"keywords": [],
"author": "Javier Bórquez <[email protected]> (http://github.com/javierbyte)",
"license": "CC0-1.0",
"homepage": "DONTFORGETTOSETUPTHIS",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^1.0.7",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.3",
"rimraf": "^2.4.3",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.9.1"
},
"dependencies": {
"lodash": "^4.13.1",
"nprogress": "^0.2.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-router": "^2.4.1"
}
}