-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
105 lines (105 loc) · 3.46 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
{
"name": "bahmni-form-controls",
"version": "0.93.19",
"description": "Repository for form controls",
"license": "GPL-2.0",
"main": "./dist/bundle.js",
"scripts": {
"clean": "rimraf dist/*",
"build": "webpack --display-modules",
"build-dev": "webpack --config webpack.dev.config.js",
"pretest": "rimraf coverage/*",
"test": "karma start karma.conf.js",
"test:watch": "karma start karma.tdd.conf.js",
"posttest": "eslint --ext .js --ext .jsx ./src ./test",
"eslintFix": "eslint --ext .js --ext .jsx ./src ./test --fix",
"publish": "npm publish || true",
"ci": "yarn run clean && yarn run build && yarn run publish",
"storybook": "start-storybook -p 6006",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook",
"bump-up": "npm version patch -m 'Bumped to version %s'",
"watch": "webpack --watch --config webpack.dev.config.js"
},
"author": "[email protected]",
"devDependencies": {
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-deployer": "^1.2.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.1",
"copyfiles": "^1.0.0",
"core-js": "^2.4.1",
"css-loader": "^0.25.0",
"enzyme": "^3.6.0",
"eslint": "^3.9.0",
"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.1.2",
"file-loader": "^0.11.1",
"image-webpack-loader": "^3.3.0",
"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",
"mocha": "^2.5.3",
"node-sass": "^6.0.1",
"react": "^16.12.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^16.12.0",
"react-json-syntax-highlighter": "^0.1.15",
"react-json-tree": "^0.10.0",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.2",
"sinon": "^2.0.0-pre.2",
"sinon-stub-promise": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"base64-inline-loader": "^1.1.0",
"classnames": "^2.2.5",
"enzyme-adapter-react-16": "^1.1.0",
"immutable": "3.8.1",
"lodash": "4.17.12",
"prop-types": "^15.6.2",
"react-intl": "^3.12.0",
"react-select": "^1.0.0-rc.2",
"react-test-renderer": "^16.12.0",
"react-textarea-autosize": "^4.0.5",
"sinon-as-promised": "^4.0.3",
"whatwg-fetch": "^1.0.0"
},
"resolutions": {
"**/**/lodash": "^4.17.12",
"**/**/lodash-es": "^4.17.14",
"**/**/mixin-deep": "^1.3.2",
"**/**/set-value": "^2.0.1",
"**/**/decompress": "^4.2.1",
"**/**/xmlhttprequest-ssl": "^1.6.1",
"**/**/open": "^6.0.0",
"**/**/lodash.template": "^4.5.0",
"**/**/growl": "^1.10.0",
"**/**/handlebars": "^4.7.7"
}
}