This repository was archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"version": "0.5.5",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"description": "A react component for DHIS2 custom apps which monitors network connection to DHIS2 server",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"example": "parcel example/public/index.html",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests --watch"
},
"peerDependencies": {
"@testing-library/react": "^11.2.5",
"notistack": "^1.0.5",
"react": "^17.0.1"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@pepfar-react-lib/network-check",
"author": "jakub-bao",
"module": "dist/network-check.esm.js",
"devDependencies": {
"@parcel/optimizer-htmlnano": "^2.0.0-nightly.612",
"@parcel/packager-html": "^2.0.0-nightly.612",
"@parcel/transformer-html": "^2.0.0-nightly.612",
"@parcel/transformer-posthtml": "^2.0.0-nightly.612",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"parcel": "^2.0.0-beta.1",
"react": "*",
"react-dom": "^17.0.1",
"size-limit": "^4.9.2",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^3.9.7"
},
"dependencies": {
"@pepfar-react-lib/jest-tools": "0.1.9"
},
"repository": {
"type": "git",
"url": "https://github.com/pepfar-datim/react-lib-network-check.git"
}
}