forked from wix-incubator/obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.37 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
79
80
81
82
83
{
"name": "react-obsidian",
"version": "1.4.0",
"description": "Dependency injection framework for React and React Native applications",
"scripts": {
"prepack": "npm run lint && tsc --project tsconfig.prod.json",
"lint": "npx eslint src transformers test --ignore-pattern '*.d.ts' --ext .ts,.tsx,.js",
"pretest": "tsc",
"test": "npx jest"
},
"main": "dist/src/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"hoist-non-react-statics": "3.x.x",
"reflect-metadata": "~0.1.13"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "7.22.x",
"@babel/plugin-proposal-decorators": "7.22.x",
"@babel/plugin-transform-class-properties": "7.22.x",
"@babel/preset-env": "7.22.x",
"@babel/preset-react": "7.22.x",
"@babel/preset-typescript": "7.22.x",
"@babel/types": "7.22.x",
"@johanblumenberg/ts-mockito": "1.x.x",
"@testing-library/react": "14.x.x",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "29.5.x",
"@types/lodash": "^4.14.176",
"@types/react": "18.2.x",
"@types/react-dom": "18.2.x",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-plugin-parameter-decorator": "1.x.x",
"eslint": "8.x.x",
"eslint-config-airbnb-typescript": "17.x.x",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-newlines": "^1.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "2.x.x",
"jest": "29.5.x",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^4.0.0",
"lodash": "^4.17.21",
"react": "18.2.x",
"react-dom": "18.2.x",
"setimmediate": "^1.0.5",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/react-obsidian.git"
},
"keywords": [
"react",
"react-native",
"dependency-injection",
"typescript",
"ioc"
],
"contributors": [
{
"name": "Artal Druk"
},
{
"name": "Guy Carmeli"
}
],
"author": "Guy Carmeli",
"license": "ISC",
"bugs": {
"url": "https://github.com/wix-incubator/react-obsidian/issues"
},
"homepage": "https://github.com/wix-incubator/react-obsidian#readme"
}