-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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
{
"name": "@mfbtech/react-async-renderer",
"version": "2.2.2",
"description": "Utilities for rendering JSX with respect to one or more asynchronous operations.",
"author": "MFB Technologies, Inc.",
"homepage": "https://github.com/MFB-Technologies-Inc/react-async-renderer",
"license": "MIT",
"keywords": [
"react",
"asynchronous",
"async",
"await",
"tsx",
"typescript",
"html",
"sass",
"functional",
"components",
"render",
"javascript",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/MFB-Technologies-Inc/react-async-renderer.git"
},
"bugs": {
"url": "https://github.com/MFB-Technologies-Inc/react-async-renderer/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"CHANGELOG.md",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"build": "rimraf ./lib && tsc --project ./tsconfig.prod.json && npm run build:css",
"build:css": "sass --no-source-map src/components:lib/components",
"lint": "eslint './src/**/*.{ts,tsx}'",
"test:ci": "jest --reporters=jest-standard-reporter --coverage",
"test": "jest --watch",
"fix-formatting": "prettier --write --config ./prettier.config.js ./src/",
"check-formatting": "prettier --check --config ./prettier.config.js ./src/",
"package": "node ./scripts/package.js"
},
"devDependencies": {
"@testing-library/react": "12.1.5",
"@types/jest": "29.5.12",
"@types/node": "18.19.31",
"@types/react": "17.0.82",
"eslint": "8.57.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-standard-reporter": "2.0.0",
"prettier": "3.2.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "5.0.5",
"sass": "1.74.1",
"ts-jest": "29.1.2",
"typescript": "5.4.4",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"@typescript-eslint/parser": "7.6.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"jest-environment-jsdom": "29.7.0"
},
"peerDependencies": {
"react": "^17.0.2 || 18",
"react-dom": "^17.0.2 || 18",
"@types/react": "^17.0.15 || 18"
}
}