forked from cds-hooks/sandbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 4.03 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "cds-hooks-sandbox",
"version": "0.1.0",
"description": "A SPA tool that simulates the CDS Hooks standard on a mock-ehr system",
"main": "build/bundle.js",
"scripts": {
"start": "node scripts/express/app.js",
"dev": "webpack-dev-server --config webpack.config.dev.js --inline",
"compile:heroku": "webpack --config webpack.config.prod.js --progress --colors --display-error-details",
"build": "webpack --config webpack.config.prod.js --progress --colors --display-error-details",
"heroku-postbuild": "npm install --only=dev && npm run compile:heroku",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx ./src --fix",
"test": "jest"
},
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cds-hooks/sandbox.git"
},
"bugs": {
"url": "https://github.com/cds-hooks/sandbox/issues"
},
"homepage": "https://github.com/cds-hooks/sandbox#readme",
"keywords": [
"cds",
"hooks",
"sandbox"
],
"dependencies": {
"axios": "^0.17.1",
"classnames": "^2.2.5",
"codemirror": "^5.36.0",
"debounce": "^1.1.0",
"jsrsasign": "^8.0.6",
"lodash": "^4.17.5",
"moment": "^2.22.0",
"prop-types": "^15.6.1",
"query-string": "^5.1.0",
"react": "^16.2.0",
"react-codemirror": "^1.0.0",
"react-datepicker": "^1.4.1",
"react-dom": "^16.2.0",
"react-markdown": "^3.3.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"terra-application-header-layout": "2.1.0",
"terra-base": "^3.4.0",
"terra-button": "^2.5.0",
"terra-card": "^2.1.0",
"terra-clinical-error-view": "^1.4.0",
"terra-content-container": "^2.4.0",
"terra-date-picker": "^2.5.0",
"terra-dialog": "^1.0.0",
"terra-form": "^2.4.0",
"terra-form-checkbox": "^2.2.0",
"terra-form-field": "^2.1.0",
"terra-form-input": "^1.0.0",
"terra-form-select": "^2.4.0",
"terra-heading": "^2.1.0",
"terra-icon": "^2.4.0",
"terra-list": "^2.5.0",
"terra-menu": "^2.3.0",
"terra-modal": "^2.1.0",
"terra-overlay": "^2.1.0",
"terra-responsive-element": "^2.4.0",
"terra-spacer": "^2.1.0",
"terra-text": "^2.1.0",
"terra-toggle": "^2.1.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"axios-mock-adapter": "^1.11.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.10",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.1.4",
"jest-environment-jsdom": "^22.4.3",
"jest-environment-jsdom-global": "^1.0.3",
"node-sass": "^4.7.2",
"postcss-custom-properties": "^7.0.0",
"postcss-loader": "^2.1.1",
"raw-loader": "^0.5.1",
"react-test-renderer": "^16.3.1",
"redux-immutable-state-invariant": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.4.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"terra-i18n-plugin": "^2.0.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"webpack-merge": "^4.1.2"
},
"jest": {
"testURL": "https://cds-client.org",
"setupFiles": [
"./tests/jest-setup.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|svg|pem)$": "<rootDir>/src/assets/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"coveragePathIgnorePatterns": [
"/jest-setup.js",
"/store.js"
],
"testEnvironment": "jest-environment-jsdom-global"
}
}