-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.93 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
{
"name": "react-model-view-viewmodel",
"version": "3.0.1",
"description": "A library for developing ReactJS applications using Model-View-ViewModel, inspired by .NET.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build": "webpack --mode production",
"test": "jest",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andrei15193/react-model-view-viewmodel.git"
},
"keywords": [
"react",
"library",
"model-view-viewmodel",
"mvvm",
"frontend",
"front-end"
],
"author": "Andrei15193",
"license": "MIT",
"bugs": {
"url": "https://github.com/Andrei15193/react-model-view-viewmodel/issues"
},
"homepage": "https://github.com/Andrei15193/react-model-view-viewmodel/wiki",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^3.0.1",
"@stylistic/eslint-plugin-ts": "^3.0.1",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"@types/react": "^19.0.8",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.1.0",
"global-jsdom": "^26.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jiti": "^2.4.2",
"react-dom": "^19.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/*.test.ts"
]
},
"typedocOptions": {
"lang": "en",
"entryPoints": [
"src/index.ts"
],
"json": "docs.json"
}
}