-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 920 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 920 Bytes
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
{
"name": "mobx-store-generator",
"version": "1.2.1",
"description": "Generates React Hooks and React Context for Mobx Stores",
"files": [
"src/",
"lib/",
"package.json"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Firaenix/mobx-store-generator.git"
},
"author": "Firaenix",
"license": "ISC",
"bugs": {
"url": "https://github.com/Firaenix/mobx-store-generator/issues"
},
"homepage": "https://github.com/Firaenix/mobx-store-generator#readme",
"dependencies": {
"mobx": "^5.13.0",
"mobx-persist": "^0.4.1",
"mobx-react": "^6.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@types/react": "^16.9.2",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}