-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
59 lines (59 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
{
"name": "mobx-react-devtools",
"version": "6.1.1",
"description": "Dev-tools for MobX and React",
"main": "index.js",
"typings": "index",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-devtools.git"
},
"scripts": {
"prettier": "prettier --write --print-width 100 --tab-width 4 --no-semi \"**/*.js\" \"**/*.ts\"",
"build:dev": "cross-env NODE_ENV=development webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"prepublish": "npm run build:prod",
"precommit": "lint-staged"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"peerDependencies": {
"mobx": "^4.3.1 || ^5.0.0",
"mobx-react": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.5.0",
"cross-env": "^5.1.4",
"file-loader": "^0.8.5",
"lint-staged": "^4.1.3",
"prettier": "^1.6.1",
"prop-types": "^15.5.10",
"url-loader": "^1.0.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive",
"devtools"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --print-width 100 --tab-width 4 --no-semi",
"git add"
]
}
}