-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
115 lines (115 loc) · 3.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "implementer-interface",
"version": "1.1.1",
"description": "App for implementer interfaces like form builder, reports, etc.",
"license": "GPL-2.0",
"main": "index.js",
"engines": {
"yarn": ">=1.22.0",
"node": "12.x"
},
"scripts": {
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"",
"clean": "rimraf dist/*",
"upgrade-form-control": "yarn upgrade bahmni-form-controls@0.93",
"copy": "copyfiles -f ./index.html ./dist",
"build": "yarn run copy && webpack",
"build-dev": "yarn run copy && webpack --config webpack.dev.config.js",
"compress": "cd dist && zip -r ./implementer_interface.zip *",
"test": "karma start",
"test:watch": "karma start --autoWatch=true --singleRun=false",
"pretest": "rimraf coverage/*",
"posttest": "eslint --ext .js --ext .jsx ./src ./test",
"eslintFix": "eslint --ext .js --ext .jsx ./src ./test --fix",
"start": "webpack-dev-server --hot --progress --colors",
"ci": "yarn run clean && yarn run build && yarn run compress",
"watch": "webpack --watch"
},
"author": "",
"devDependencies": {
"babel-eslint": "^6.1.2",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"copy-webpack-plugin": "4.0.1",
"copyfiles": "^1.0.0",
"css-loader": "^0.23.1",
"enzyme": "^3.11.0",
"eslint": "^3.1.1",
"eslint-config-airbnb": "^6.2.0",
"eslint-import-resolver-webpack": "^0.4.0",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.11.1",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-jsx-control-statements": "^2.1.1",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"fetch-mock": "^5.0.3",
"file-loader": "^0.9.0",
"font-awesome-webpack": "0.0.4",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.0",
"karma-jsdom-launcher": "^3.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"karma-webpack-with-fast-source-maps": "^1.10.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.5.3",
"node-sass": "^4.13.1",
"react-addons-test-utils": "^16.0.0-alpha.3",
"react-hot-loader": "^1.3.0",
"react-spinjs": "^3.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.0",
"shrinkwrap": "^0.4.0",
"sinon": "^2.0.0-pre.2",
"style-loader": "^0.13.1",
"stylelint-webpack-plugin": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel": "^6.5.2",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"bahmni-form-controls": "^0.93.17",
"classnames": "^2.2.5",
"codemirror": "^5.51.0",
"core-js": "^2.4.1",
"file-saver": "^2.0.2",
"jshint": "^2.11.0",
"jsonpath": "^0.2.11",
"jszip": "^3.2.1",
"lodash": "^4.17.12",
"moment": "^2.14.1",
"prop-types": "^15.6.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-file-download": "^0.3.3",
"react-file-reader": "^1.0.2",
"react-redux": "^7.2.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.5",
"whatwg-fetch": "^1.0.0",
"js-beautify": "^1.10.3",
"enzyme-adapter-react-16": "^1.15.2",
"reactjs-popup": "^1.5.0"
},
"resolutions": {
"**/**/lodash": "^4.17.12",
"**/**/cryptiles": "^4.1.2",
"**/**/xmlhttprequest-ssl": "^1.6.1",
"**/**/open": "^6.0.0",
"**/**/growl": "^1.10.0",
"**/**/handlebars": "^4.7.7"
}
}