-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "boilerplate-react-owa",
"version": "1.0.0",
"description": "Boierplate for developing react OpenMRS OWA",
"repository": "https://github.com/sanishmaharjan/boilerplate-react-owa",
"license": "MIT",
"NODE_PATH": "./app",
"scripts": {
"webpack": "webpack -wd",
"build": "NODE_PATH=./app jest && webpack -p",
"test": "NODE_PATH=./app jest --notify",
"code:format": "prettier --find-config-path --write 'app/**/*.js'"
},
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"node": "current"
}
}
],
"stage-2"
]
},
"jest": {
"transform": {
".*": "jest-css-modules"
},
"setupFiles": [
"raf/polyfill",
"./.jest.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"eslint": "^4.12.1",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"jest-css-modules": "^1.1.0",
"prettier": "1.10.2",
"react-test-renderer": "^16.2.0"
},
"dependencies": {
"axios": "^0.17.1",
"axios-mock-adapter": "^1.10.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"ejs": "^2.5.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"i18n-iso-639-1": "2.0.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-cookie": "^2.1.2",
"react-dom": "^16.2.0",
"react-intl": "^2.4.0",
"react-notify": "^3.0.0",
"react-router-dom": "^4.2.2",
"style-loader": "^0.19.0",
"webpack": "^3.9.1"
}
}