forked from rakenapp/mobx-mc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "mobx-mc",
"version": "2.0.9",
"description": "Mobx Store Model-Collection Library",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rakenapp/mobx-mx.git"
},
"keywords": [
"mobx",
"collection",
"model",
"store",
"java-script"
],
"author": "Raken",
"license": "MIT",
"bugs": {
"url": "https://github.com/rakenapp/mobx-mx/issues"
},
"homepage": "https://github.com/rakenapp/mobx-mx#readme",
"dependencies": {
"axios": "^0.18.1",
"lodash.difference": "^4.5.0",
"lodash.forin": "^4.4.0",
"lodash.isempty": "^4.4.0",
"lodash.omit": "^4.5.0",
"lodash.pick": "^4.4.0",
"lodash.pickby": "^4.6.0",
"lodash.result": "^4.5.2",
"mobx": "4.13.1",
"querystringify": "^2.1.1",
"uuid-v4": "^0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.0.0-beta.55",
"babel-jest": "^24.9.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}