-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
117 lines (117 loc) · 3.48 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
{
"name": "gitea-react-toolkit",
"version": "2.4.1-rc",
"license": "MIT",
"description": "A Gitea API React Toolkit Component Library",
"homepage": "https://gitea-react-toolkit.netlify.com/",
"repository": {
"type": "git",
"url": "https://github.com/unfoldingWord/gitea-react-toolkit"
},
"private": false,
"dependencies": {
"awesome-debounce-promise": "2.1.0",
"axios": "0.19.0",
"axios-cache-adapter": "2.4.1",
"base-64": "0.1.0",
"deep-equal": "^2.0.5",
"js-base64": "^3.7.2",
"jszip": "^3.5.0",
"localforage": "1.7.3",
"markdown-translatable": "1.3.1-rc.1",
"prop-types": "15.7.2",
"use-deep-compare": "^1.1.0",
"use-deep-compare-effect": "^1.3.1",
"utf8": "3.0.0"
},
"scripts": {
"start": "styleguidist server",
"build": "styleguidist build",
"prepublishOnly": "rm -fr ./dist & babel --config-file ./babel.prod.config.js ./src --out-dir ./dist -s inline --extensions \".ts,.js\"",
"cypress:run": "cypress run",
"test:e2e": "NODE_ENV=test start-test 6060 cypress:run && nyc report --reporter=json-summary",
"test:unit": "NODE_ENV=test jest ./src/core --coverage && cat ./coverage/lcov.info | coveralls",
"test": "nyc --exclude-after-remap=false npm run test:e2e",
"create-coverage-badge": "bash scripts/create-badge-json.sh"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"peerDependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.9.1",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.7.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "7.11.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.7.2",
"@cypress/code-coverage": "1.14.0",
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.9.1",
"@types/base-64": "0.1.3",
"@types/cypress": "1.1.3",
"@types/jest": "^25.2.1",
"@types/utf8": "2.1.6",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"@unfoldingword/eslint-config": "^1.0.7",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "6.0.0",
"coveralls": "3.0.7",
"cypress": "^6.8.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-chai-friendly": "0.5.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-mdx": "1.0.1",
"eslint-plugin-react": "7.19.0",
"istanbul-lib-coverage": "2.0.5",
"jest": "24.9.0",
"lorem-ipsum": "2.0.1",
"moment": "2.24.0",
"nyc": "14.1.1",
"path": "latest",
"react": "16.11.0",
"react-docgen-typescript": "^1.16.2",
"react-dom": "16.11.0",
"react-scripts": "^3.4.0",
"react-styleguidist": "^11.1.7",
"regenerator-runtime": "^0.13.9",
"source-map-support": "0.5.16",
"start-server-and-test": "1.10.6",
"style-loader": "^1.0.0",
"ts-jest": "24.1.0",
"ts-loader": "^6.2.1",
"typescript": "3.7.2",
"webpack": "^4.44.2"
},
"main": "dist/index.js",
"files": [
"dist/*"
],
"resolutions": {
"react": "16.11.0",
"react-dom": "16.11.0"
},
"nyc": {
"excludeAfterRemap": false,
"exclude": [
"**/*.spec.js"
],
"include": [
"**/components/**"
]
}
}