-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 loc) · 3.74 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
{
"name": "gateway-edit",
"version": "2.4.1",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"dev": "bash -c \"source ./scripts/set-env.sh && next\"",
"build": "bash -c \"source ./scripts/set-env.sh && next build\"",
"start": "bash -c \"source ./scripts/set-env.sh && next start\"",
"export": "next export",
"postinstall": "husky install",
"increment-build": "bash scripts/increment-build.sh && git add -A",
"cypress": "cross-env NODE_ENV=test cypress open",
"cypress:headless": "cross-env NODE_ENV=test cypress run",
"test": "cross-env NODE_ENV=test start-server-and-test dev http://localhost:3000 cypress",
"test:headless": "cross-env NODE_ENV=test start-server-and-test dev http://localhost:3000 cypress:headless",
"test:unit": "cross-env NODE_ENV='test' jest --coverage __tests__",
"test:unit-nocov": "cross-env NODE_ENV='test' jest",
"coverage-summary": "yarn nyc report --reporter=text-summary",
"mkdir:reports": "mkdir reports || true",
"precopy:reports": "yarn mkdir:reports",
"copy:reports": "cp cypress-coverage/coverage-final.json reports/from-cypress.json && cp jest-coverage/coverage-final.json reports/from-jest.json",
"precombine:reports": "yarn copy:reports && mkdir .nyc_output || true",
"combine:reports": "npx nyc merge reports && mv coverage.json .nyc_output/out.json",
"prereport:combined": "yarn combine:reports",
"report:combined": "npx nyc report --reporter lcov --reporter text --report-dir coverage"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.89",
"@mui/material": "^5.8.7",
"@mui/styles": "^5.8.7",
"@sendgrid/mail": "^7.4.2",
"autoprefixer": "^10.1.0",
"bible-reference-rcl": "1.4.1",
"core-js": "^3.8.3",
"deep-equal": "^2.0.5",
"gitea-react-toolkit": "2.4.0",
"localforage": "^1.9.0",
"lodash.clonedeep": "^4.5.0",
"markdown-translatable": "2.0.3",
"next": "12",
"postcss": "^8.2.1",
"react": "18",
"react-bootstrap": "0.32.4",
"react-dom": "18",
"react-draggable": "^4.4.5",
"react-icons": "^4.8.0",
"regenerator-runtime": "^0.13.7",
"resource-workspace-rcl": "2.1.4",
"scripture-resources-rcl": "5.5.13",
"scripture-tsv": "1.2.0",
"single-scripture-rcl": "3.4.23",
"tailwindcss": "^2.0.4",
"tc-ui-toolkit": "5.3.3",
"translation-helps-rcl": "3.6.3",
"use-deep-compare-effect": "^1.3.1",
"word-aligner": "^1.0.0",
"word-aligner-rcl": "1.1.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.11",
"@cypress/instrument-cra": "^1.4.0",
"@next/bundle-analyzer": "^14.2.3",
"@swc/core": "^1.4.17",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"cross-env": "7.0.3",
"cypress": "^8.6.0",
"eslint": "^7.16.0",
"eslint-config-next": "12",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsdoc": "^31.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.2.0",
"jest": "^27.3.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react-icons": "^4.8.0",
"start-server-and-test": "^1.14.0"
},
"nyc": {
"report-dir": "cypress-coverage"
}
}