-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "@kentik/mobx-form",
"version": "1.1.0",
"description": "",
"main": "dist/index.js",
"browser": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "eslint -c .eslintrc \"src/**/*.js\"",
"lint:fix": "eslint -c .eslintrc \"src/**/*.js\" --fix"
},
"author": "Kentik Technologies",
"license": "Apache 2",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.3.0",
"prettier": "^1.13.3",
"prettier-eslint": "^8.8.1",
"webpack": "^4.10.2",
"webpack-cli": "^2.1.4"
},
"repository": {
"url": "https://github.com/kentik/mobx-form",
"type": "git"
},
"peerDependencies": {
"classnames": "^2.2.5",
"mobx": ">= 4.3.0",
"mobx-react": "^5.1.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"validatorjs": "^3.14.2"
}
}