-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"name": "protect-and-track",
"version": "1.3.0",
"private": true,
"homepage": ".",
"dependencies": {
"@datadog/browser-logs": "^4.46.0",
"@datadog/browser-rum": "^4.46.0",
"@virtru-private/oidc-client-js": "^4.0.0",
"classnames": "^2.3.2",
"json2csv": "^5.0.7",
"localforage": "^1.10.0",
"moment": "^2.29.4",
"rc-scrollbars": "^1.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redux-zero": "^5.1.7",
"virtru-sdk": "^5.1.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/virtru/protect-and-track.git"
},
"scripts": {
"start-webpack": "webpack serve --port 443 --client-progress --https --host local.virtru.com --static build",
"start": "sudo HTTPS=true PORT=443 HOST='local.virtru.com' react-scripts start",
"ci-start": "HTTPS=true PORT=443 HOST='local.virtru.com' react-scripts start",
"ci-e2e-test": "npm run start-webpack & ./wait-for-it.sh local.virtru.com:443 -t 30000 -- npm run playwright-test",
"build": "react-scripts build",
"license": "./license-update",
"pretty": "prettier --write \"./**/*.{css,md,js,jsx,json,yml}\"",
"test": "eslint src && react-scripts test --watchAll=false",
"test-watch": "react-scripts test",
"playwright-test": "playwright test",
"playwright-debug": "playwright test --debug",
"show-report": "playwright show-report",
"test-e2e": ".buildkite/scripts/e2e.sh",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.37.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"husky": "^8.0.3",
"prettier": "3.0.1",
"pretty-quick": "^3.1.3",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"webpack-cli": "^5.1.4"
},
"husky": {
"hooks": {
"post-commit": "git update-index -g",
"pre-commit": "pretty-quick --staged && .buildkite/scripts/shfmt"
}
}
}