-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 825 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 825 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
27
28
{
"name": "react-app-boilerplate",
"version": "0.1.4",
"description": "React application boilerplate",
"author": "Tapos Ghosh",
"license": "ISC",
"scripts": {
"start": "webpack-dev-server --progress --inline --hot",
"build": "NODE_ENV=production node_modules/.bin/webpack -p --progress --colors"
},
"devDependencies": {
"babel-core": "~6.7.*",
"babel-loader": "~6.2.*",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "~6.6.*",
"babel-preset-react": "~6.5.*",
"babel-preset-react-hmre": "^1.1.1",
"webpack": "~1.12.*",
"webpack-dev-server": "~1.14.*"
},
"dependencies": {
"mobx": "^2.2.2",
"mobx-react": "^3.3.1",
"react": "^15.0.0",
"react-dom": "^15.0.0"
}
}