This repository was archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.91 KB
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
{
"name": "cerberus-management-dashboard",
"description": "A management dashboard for Cerberus.",
"main": "index.js",
"homepage": ".",
"proxy": "http://localhost:8080",
"repository": {
"type": "git",
"url": "git@github.com:Nike-Inc/cerberus-management-dashboard.git"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && rm -rf dist && mv build dist",
"test": "react-scripts test --env=jsdom",
"logs": "multitail logs/*",
"test:all": "npm run test:unit && npm run test:component && npm run test:e2e ",
"test:unit": "npx react-scripts test --env=jsdom --passWithNoTests",
"test:integration": "npx react-scripts test --env=jsdom --passWithNoTests",
"test:coverage": "npx react-scripts test --env=jsdom --coverage",
"test:e2e": "npx cypress run --config-file ./cypress.config.js --browser chrome --e2e --headed --no-exit",
"test:component": "npx cypress run --config-file ./cypress.config.js --browser chrome --component --headed --no-exit",
"test:all:ci": "npm run test:unit:ci && npm run test:component:ci && npm run test:e2e:ci ",
"test:unit:ci": "CI=true npx react-scripts test --env=jsdom --passWithNoTests",
"test:integration:ci": "CI=true npx react-scripts test --env=jsdom --passWithNoTests",
"test:coverage:ci": "CI=true npx react-scripts test --env=jsdom --coverage",
"test:e2e:ci": "CI=true npx cypress run --config-file ./cypress.config.js --browser chrome --e2e --headless --quiet",
"test:component:ci": "CI=true npx cypress run --config-file ./cypress.config.js --browser chrome --component --headless --quiet"
},
"author": "Justin Field <justin.field@nike.com>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.27.2",
"connected-react-router": "^6.9.3",
"downloadjs": "1.4.7",
"history": "^4.10.1",
"html-react-parser": "^1.4.11",
"humps": "2.0.1",
"loglevel": "1.8.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "^16.14.0",
"react-json-pretty": "^2.2.0",
"react-paginate": "7.1.3",
"react-redux": "^6.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "5.7.0",
"react-simple-file-input": "2.1.0",
"react-tooltip": "^4.2.21",
"redux": "3.7.2",
"redux-form": "5.3.6",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"worker-timers": "7.0.54"
},
"devDependencies": {
"react-scripts": "5.0.1",
"sass": "^1.55.0",
"@cypress/skip-test": "^2.6.1",
"cypress": "~10.9.0",
"npm-check-updates": "~15.3.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"node-fetch": "2.6.1",
"faye-websocket": "0.11.3",
"sass-loader": "10.0.5"
}
}