This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "arboris",
"version": "1.0.2",
"description": "Hassle-free combination of mobx-state-tree and server-side rendering.",
"main": "lib/index.js",
"browser": "lib/index.web.js",
"repository": "https://github.com/d4rky-pl/arboris",
"author": "Michał Matyas",
"license": "MIT",
"scripts": {
"prepare": "webpack",
"test": "node jest.setup.js && jest",
"test-debug": "node --inspect-brk ./node_modules/.bin/jest -i",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
},
"peerDependencies": {
"mobx-state-tree": ">= 1.2.1",
"react": ">= 15",
"react-dom": ">= 15"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"detect-node": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-config-prettier": "2.9.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "21.14.0",
"eslint-plugin-prettier": "2.6.0",
"husky": "0.14.3",
"jest": "^22.1.4",
"lint-staged": "7.0.0",
"lodash.merge": "^4.6.0",
"mobx": "^3.4.1",
"mobx-state-tree": ">= 1.2.1",
"prettier": "1.11.1",
"react": ">= 15",
"react-dom": ">= 15",
"sinon": "^4.2.1",
"webpack": "^3.8.1"
}
}