-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.31 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": "tracing-reporter",
"version": "2.1.0",
"description": "Builds a tracing report from JsDoc-annotated tests",
"main": "lib/index.js",
"private": false,
"bin": {
"tracing-reporter": "bin/tracing-reporter.js"
},
"engines": {
"node": ">=12"
},
"keywords": [
"Cerner",
"tracing-reporter",
"tracing-reporter",
"tracing"
],
"publishConfig": {
"registry": "https://cernerrepos.net/api/npm/npm-integration-local"
},
"bugs": {
"url": "http://jira2.cerner.com/browse/CCDEV"
},
"scripts": {
"deploy-gh-pages": "npm run pack && gh-pages -d build",
"lint": "eslint --ext .js src",
"jest": "jest",
"test": "npm run lint && npm run jest",
"test:jest": "npm run jest --ci",
"posttest:jest": "jest-it-up",
"test:lint": "npm run lint",
"test:wdio": "start-server-and-test start-prod http://localhost:8080 'npx wdio run ./wdio.conf.js'",
"pack": "TERRA_DEV_SITE_PUBLIC_PATH='/tracing-reporter/' NODE_ENV=production webpack -p",
"prepare": "npm run compile",
"demo": "npm run compile && node demos/demo-runner.js",
"start": "webpack-dev-server",
"start-prod": "webpack-dev-server --env.disableHotReloading -p",
"clean:all": "rimraf ./package-lock.json && rimraf ./node_modules",
"clean:install": "npm run clean:all && npm install",
"compile": "npm run compile:clean && npm run compile:build",
"compile:clean": "rimraf lib",
"compile:build": "babel src --out-dir lib --copy-files",
"test:pr": "git branch -D TEST-PR; git checkout -b TEST-PR && git push origin TEST-PR --force --no-verify && git checkout -",
"kill:wdio": "PROC_ID=$(RESULT=$(sudo netstat -ltnp | grep :8080) && (echo $RESULT | awk '{print $7}' | awk -F/ '{print $1}')) && kill -9 $PROC_ID"
},
"repository": {
"type": "git",
"url": "https://github.cerner.com/medication-record/tracing-reporter.git"
},
"author": "Matthew Carr ([email protected])",
"license": "ISC",
"dependencies": {
"framer-motion": "^2.6.5",
"fs": "0.0.1-security",
"glob": "^7.1.3",
"jsdoc-api": "^5.0.1",
"ow": "~0.23.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-table": "^7.5.0",
"smoothscroll-polyfill": "^0.4.4",
"spinnies": "^0.5.1",
"terra-markdown": "^2.43.0",
"underscore": "^1.9.1"
},
"peerDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-typescript": "^7.0.0",
"react": "^16.13.1",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@babel/runtime-corejs3": "^7.15.3",
"@cerner/terra-aggregate-translations": "^2.0.1",
"@cerner/terra-cli": "^1.7.0",
"@cerner/terra-functional-testing": "^1.9.0",
"@wdio/cli": "^7.16.13",
"@wdio/dot-reporter": "^7.16.13",
"@wdio/local-runner": "^7.16.13",
"@wdio/mocha-framework": "^7.16.13",
"@wdio/spec-reporter": "^7.16.13",
"browserslist-config-terra": "^1.0.0",
"chromedriver": "^97.0.0",
"cuid": "^2.1.8",
"eslint": "6.5.0",
"gh-pages": "^2.2.0",
"jest": "^26.6.3",
"jest-it-up": "^1.2.5",
"jest-snapshot-serializer-ansi": "^1.0.0",
"memfs": "^3.2.2",
"prettier": "^2.3.2",
"raf": "^3.4.1",
"start-server-and-test": "^1.14.0",
"terra-dev-site": "^6.2.0",
"wdio-chromedriver-service": "^7.2.6",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^5.8.0"
}
}