-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
{
"name": "openmrs-contrib-reactexample",
"version": "1.0.0",
"description": "Example OpenMRS app using React",
"main": "index.js",
"scripts": {
"start": "babel-node server.js",
"start:prod": "NODE_ENV=production PORT=8000 babel-node server.js",
"build": "rimraf dist && NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"lint": "eslint src; exit 0",
"clean": "rimraf dist"
},
"author": "OpenMRS <pascal@openmrs.org> (http://openmrs.org)",
"license": "MPL-2.0",
"dependencies": {
"express": "^4.13.4",
"lodash": "^4.8.2",
"openmrs.js": "0.0.2",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"style-loader": "^0.13.1",
"raw-loader": "^0.5.1",
"file-loader": "^0.8.5",
"url-loader": "^0.5.7",
"rimraf": "^2.5.2",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"stats-webpack-plugin": "^0.3.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "6.2.0",
"eslint-plugin-react": "^4.3.0"
}
}