-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1016 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1016 Bytes
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
{
"name": "react-flow-store",
"version": "1.0.0",
"description": "A simple, efficient, and flow-based state management library for React applications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc -w",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bogdanmartinescu/ReactFlowStore.git"
},
"author": "Liviu Martinescu<hi@mlb.ro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bogdanmartinescu/ReactFlowStore/issues"
},
"homepage": "https://github.com/bogdanmartinescu/ReactFlowStore#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.7",
"@types/react": "^18.2.21",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"rxjs": "^7.8.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}