forked from Kukkimonsuta/inversify-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "@ablestack/inversify-react",
"version": "1.0.0",
"description": "A copy of Kukkimonsuta/inversify-react - Components and decorators to connect react with inversify - only intended for ablestack consumers",
"main": "./dist/index.js",
"typings": "./types/index.d.ts",
"scripts": {
"init": "npm ci",
"dev": "webpack --mode development -w",
"prod": "npm run copycontent && webpack --mode production",
"copycontent": "shx rm -f dist/package.json dist/README.md && shx cp package.json README.md dist",
"prepublishOnly": "npm run prod",
"pub": "npm publish --access public",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watchAll"
},
"author": {
"name": "jamshally",
"url": "https://github.com/jamshally"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ablestack/inversify-react.git"
},
"keywords": [
"inversify",
"react"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"conditional-type-checks": "^1.0.5",
"inversify": "^5.1.1",
"jest": "^27.0.5",
"react": "^17.0.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"reflect-metadata": "^0.1.13",
"shx": "^0.3.3",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
},
"peerDependencies": {
"inversify": "^5.1.1",
"react": "^16.3.0 || ^17.0.0"
}
}