-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.43 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
{
"name": "rode-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"e2e": "cypress open",
"e2e-local": "yarn run e2e --env local_rode_api=true",
"fmt": "prettier --write .",
"lint": "eslint --max-warnings=0 .",
"smoke": "./node_modules/.bin/cypress-tags run -e TAGS='@smoke'",
"start": "next start",
"serve": "node index.mjs",
"test": "jest",
"verify": "prettier --check . && yarn lint && yarn test"
},
"dependencies": {
"config": "^3.3.6",
"dayjs": "^1.10.4",
"diff": "^5.0.0",
"express": "^4.17.1",
"express-openid-connect": "^2.4.0",
"http-status-codes": "^2.1.4",
"next": "10.0.8",
"node-fetch": "^2.6.1",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-select": "^4.3.1",
"react-simple-code-editor": "^0.11.0",
"react-toastify": "^7.0.3",
"react-tooltip": "^4.2.21",
"sass": "^1.32.7",
"swr": "^0.4.2",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.1",
"babel-jest": "^27.0.6",
"chance": "^1.1.7",
"cypress": "^6.6.0",
"cypress-cucumber-preprocessor": "^4.0.3",
"eslint": "^7.20.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.22.0",
"glob": "^7.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-chain": "^1.1.5",
"prettier": "^2.2.1"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": ".jest/coverage",
"cacheDirectory": ".jest/cache",
"collectCoverageFrom": [
"**/*.js",
"!config/**",
"!.eslintrc.js",
"!**/node_modules/**",
"!**/.next/**",
"!**/.jest/**",
"!**test/**",
"!coverage/**",
"!cypress/**",
"!prism/prism.js"
],
"moduleNameMapper": {
"\\.(css|scss|sass)$": "identity-obj-proxy"
},
"moduleDirectories": [
"node_modules",
"<rootDir>"
],
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/cypress",
"<rootDir>/config"
],
"transform": {
"\\.m?js$": "babel-jest"
}
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
}
}