-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "cypress-ui-tests",
"version": "1.0.0",
"private": true,
"description": "A boilerplate project that contains e2e tests of the UI",
"author": "Zubair Haque",
"repository": {
"type": "git",
"url": "repo-url"
},
"scripts": {
"lint": "eslint . --fix",
"test": "npx cypress run --headless --env TOKEN=$(npm run --silent token-gen)",
"token-gen": "node cypress/generateToken.js"
},
"dependencies": {
"jest-junit": "^3.6.0"
},
"devDependencies": {
"@azure/msal-node": "^1.3.0",
"@babel/core": "~7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "~7.10.1",
"@babel/plugin-proposal-object-rest-spread": "~7.5.5",
"@babel/plugin-proposal-optional-chaining": "~7.8.3",
"@babel/polyfill": "~7.4.4",
"@babel/preset-env": "~7.5.5",
"@babel/preset-react": "~7.0.0",
"@babel/register": "~7.5.5",
"@babel/runtime": "~7.5.5",
"@hot-loader/react-dom": "^17.0.1",
"@monsantoit/preferences-client": "~3.2.3",
"@monsantoit/profile-client": "~4.0.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@testing-library/dom": "^7.28.1",
"@testing-library/react": "^10.0.6",
"@testing-library/react-hooks": "^5.1.1",
"babel-eslint": "~10.0.3",
"babel-plugin-autobind-class-methods": "~5.0.1",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-rewire": "~1.2.0",
"babel-plugin-styled-components": "~1.10.7",
"babel-plugin-transform-class-properties": "~6.24.1",
"compression-webpack-plugin": "~3.1.0",
"cookie-getter": "~2.0.0",
"cross-env": "~4.0.0",
"css-loader": "~3.5.3",
"enzyme": "~3.3.0",
"cypress": "^7.6.0",
"enzyme-adapter-react-16": "~1.15.2",
"eslint-plugin-cypress": "^2.11.3",
"es6-promise": "~4.1.0",
"eslint": "~6.1.0",
"is-uuid": "^1.0.2",
"jest": "^22.4.3"
},
"optionalDependencies": {
"fsevents": "~2.1.3"
},
"engines": {
"node": ">=12",
"npm": "7"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"chrome 74",
"safari 13"
]
}