-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 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
{
"name": "@react-noui/external-store",
"version": "2.0.0",
"description": "Create external stores for your react projects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/react-noui/external-store/tree/master/docs/markdown/README.md",
"author": "taystack",
"license": "MIT",
"scripts": {
"build": "npx ts-node ./scripts/build-lib.ts",
"build:docs": "npx ts-node ./scripts/build-docs.ts",
"build:tar": "npx ts-node ./scripts/pack-lib.ts",
"start": "npx tsc --watch",
"test": "yarn jest --collect-coverage"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/fetch-mock": "^7.3.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.8.4",
"@types/react": "^18.2.23",
"chalk": "^4.1.2",
"concurrently": "^8.2.1",
"fetch-mock-jest": "^1.5.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"node-fetch": "2",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.1.0"
}