This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
119 lines (119 loc) · 3.89 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
{
"name": "ascvd-risk-app",
"version": "1.1.0",
"author": "Cerner Corporation, SMART on FHIR",
"description": "SMART ASCVD Risk App",
"license": "Apache-2.0",
"keywords": [
"Cerner",
"SMART",
"ASCVD",
"SMART ASCVD risk app"
],
"scripts": {
"build": "npm run clean && webpack --config webpack.prod.config.js --progress --colors --display-error-details",
"clean": "rimraf build",
"lint": "eslint app/*.js components/**/**/*.jsx views/**/index.jsx components/**/*.jsx --config .eslintrc --fix",
"start": "webpack-dev-server --config webpack.dev.config.js --inline",
"test": "jest; mocha --require tests/helpers/browser.js tests/app/*.js",
"test:wdio": "wdio tests/wdio.conf.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"canadarm": "^1.0.2",
"classnames": "^2.2.5",
"intl": "^1.2.5",
"jquery": "^3.5.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-intl": "^2.9.0",
"terra-clinical-error-view": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"ajv": "^6.9.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.0.0",
"babel-loader": "^8.0.0",
"babel-preset-airbnb": "^2.1.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"core-js": "^3.3.2",
"css-loader": "^3.2.0",
"enzyme": "^2.6.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"inject-loader": "^4.0.1",
"jest": "^24.9.0",
"jsdom": "^9.8.3",
"json-loader": "^0.5.4",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.1",
"node-sass": "^4.13.1",
"raf": "^3.4.1",
"react-addons-test-utils": "^15.4.1",
"react-test-renderer": "^15.4.1",
"regenerator-runtime": "^0.13.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"selenium-server-standalone-jar": "^3.2.0",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"terra-toolkit": "^5.12.0",
"uglify-js": "^2.8.11",
"url-loader": "^2.2.0",
"wdio-mocha-framework": "^0.6.4",
"wdio-spec-reporter": "^0.1.5",
"webpack": "^4.28.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"repository": {
"type": "git",
"url": "https://github.cerner.com/Igneous/ascvd-risk-app.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|svg)$": "<rootDir>/app/__mocks__/fileMock.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"tests/wdio"
]
}
}