forked from pro-react/react-app-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 697 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 697 Bytes
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
{
"name": "reactify",
"version": "0.1.0",
"description": "Reactify Boilerplate",
"author": "Yamil Llanos",
"license": "MIT",
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --progress",
"build": "NODE_ENV=production node_modules/.bin/webpack -p --progress --colors"
},
"dependencies": {
"react": "~0.14.*",
"react-dom": "~0.14.*"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.16.1",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}