-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
122 lines (122 loc) · 3.78 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "tc-create-app",
"homepage": "https://create.translationcore.com/",
"version": "1.18",
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/unfoldingWord/tc-create-app/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/unfoldingWord/tc-create-app"
},
"scripts": {
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build && mv styleguide build",
"start": "bash -c \"source ./scripts/set-env.sh && rescripts start\"",
"build": "bash -c \"source ./scripts/set-env.sh && rescripts build && yarn styleguide:build\"",
"electron:build": "react-scripts build",
"deploy": "yarn build && netlify deploy",
"cypress:run": "NODE_ENV=test cypress run",
"cypress": "NODE_ENV=test cypress open",
"test:cov": "yarn cypress:run && nyc report --reporter=json-summary --reporter=text-summary",
"test:unit": "jest --coverage __tests__ && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:update-snapshots": "jest -u",
"test": "start-test 3000 test:cov",
"create-coverage-badge": "bash scripts/create-badge-json.sh",
"postinstall": "husky install",
"increment-build": "bash scripts/increment-build.sh && git add -A"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "4.0.0-alpha.60",
"@material-ui/styles": "^4.11.3",
"axios": "^0.21.0",
"bible-reference-range": "^1.1.0",
"datatable-translatable": "1.3.1",
"dcs-branch-merger": "1.4.1",
"deep-freeze": "^0.0.1",
"gitea-react-toolkit": "2.2.4",
"lodash.isequal": "^4.5.0",
"markdown-translatable": "2.1.4",
"react": "^16.14.0",
"react-beforeunload": "^2.5.1",
"react-dom": "^16.12.0",
"react-headroom": "^3.0.0",
"react-icons": "^4.8.0",
"react-select": "^4.1.0",
"react-waypoint": "^10.1.0",
"scripture-resources-rcl": "5.5.15",
"tc-ui-toolkit": "^5.3.3",
"use-deep-compare": "^1.1.0",
"use-deep-compare-effect": "^1.3.1",
"usfm-js": "^2.1.0",
"uw-content-validation": "3.1.2",
"uw-languages-rcl": "1.0.2",
"uw-tsv-parser": "1.0.2",
"word-aligner": "^1.0.0"
},
"devDependencies": {
"@cypress/code-coverage": "3.9.2",
"@rescripts/cli": "^0.0.16",
"@rescripts/rescript-env": "^0.0.12",
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.10",
"@unfoldingword/eslint-config": "^1.1.0",
"babel-loader": "8.0.5",
"babel-plugin-istanbul": "6.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"coveralls": "^3.1.0",
"css-loader": "^5.1.0",
"cypress": "6.8.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-chai-friendly": "0.6.0",
"eslint-plugin-cypress": "2.11.2",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-test-selectors": "^1.3.0",
"file-loader": "^6.2.0",
"husky": "^5.2.0",
"istanbul-lib-coverage": "3.0.0",
"lodash": "^4.17.21",
"nyc": "14.1.1",
"prettier": "^2.5.1",
"react-scripts": "3.0.1",
"react-styleguidist": "11.0.8",
"react-test-renderer": "^16.13.1",
"start-server-and-test": "^1.12.0",
"style-loader": "^2.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"rescripts": [
"env"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"nyc": {
"excludeAfterRemap": false,
"exclude": [
"**/*.spec.js"
],
"include": [
"**/components/**/**.js",
"**/components/**.js"
]
}
}