-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "mobx-mc",
"version": "5.0.0",
"description": "Mobx 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-mc.git"
},
"keywords": [
"mobx",
"collection",
"model",
"store",
"java-script"
],
"author": "Raken",
"license": "MIT",
"bugs": {
"url": "https://github.com/rakenapp/mobx-mc/issues"
},
"homepage": "https://github.com/rakenapp/mobx-mc#readme",
"dependencies": {
"axios": "^1.6.2",
"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": "^6.12.4",
"querystringify": "^2.2.0",
"uuid-v4": "^0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/plugin-proposal-decorators": "^7.23.3",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/plugin-transform-class-static-block": "^7.23.3",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.23.3",
"@babel/runtime": "^7.23.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "[email protected]"
}