-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·34 lines (34 loc) · 966 Bytes
/
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
{
"name": "dx-react-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint . --ext .js --ext .jsx"
},
"author": "Nicolas @elBurabure Fernandez",
"license": "MIT",
"devDependencies": {
"babel-core": "^5.8.29",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.1.1",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
},
"dependencies": {
"react": "^0.14.0",
"react-dom": "^0.14.0"
}
}