-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
129 lines (129 loc) · 2.91 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "mobx-store-provider",
"version": "2.1.2",
"description": "Use React Hooks with mobx-state-tree",
"homepage": "https://mobx-store-provider.jonbnewman.dev",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"lint": "eslint src/*.ts",
"build": "tsc",
"watch": "tsc -w",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"coverage": "jest --coverage"
},
"keywords": [
"mobx",
"mobx-state-tree",
"hooks",
"react",
"functional"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonbnewman/mobx-store-provider.git"
},
"files": [
"lib/**/*"
],
"author": "Jonathan Newman",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"react": "^17.0.2",
"jest": "^27.4.7",
"mobx": "^6.3.10",
"mobx-react": "^7.2.1",
"mobx-state-tree": "^5.1.0",
"prettier": "^2.5.1",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">=16.8",
"mobx-state-tree": ">=3.0.0"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "((\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "jsdom"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"printWidth": 80,
"tabWidth": 2
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "detect",
"flowVersion": "0.53"
}
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
"no-unused-vars": "off"
}
},
"eslintIgnore": [
"node_modules",
"dist",
"coverage"
]
}