-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "inversify-react",
"version": "1.2.0",
"description": "Components and decorators to connect react with inversify.",
"main": "./dist/index.js",
"typings": "./types/index.d.ts",
"scripts": {
"init": "npm ci",
"dev": "webpack --mode development -w",
"prod": "webpack --mode production",
"prepublishOnly": "npm run prod",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watchAll"
},
"author": {
"name": "Lukáš Novotný",
"url": "https://github.com/Kukkimonsuta"
},
"contributors": [
{
"name": "Pavel Pevnitskiy",
"url": "https://github.com/fljot"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Kukkimonsuta/inversify-react.git"
},
"keywords": [
"inversify",
"react"
],
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"conditional-type-checks": "^1.0.6",
"inversify": "^6.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reflect-metadata": "^0.2.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"inversify": "^5.0.5 || ^6.0.1",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}