-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.68 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@mogul/components",
"version": "0.0.98",
"private": false,
"license": "MIT",
"main": "build/mogul.js",
"jsnext:main": "build/mogul.js",
"scripts": {
"precommit": "lint-staged",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .out",
"clean:node_modules": "rimraf ./node_modules",
"build": "rollup -c ./scripts/rollup.config.js",
"prepublishOnly": "node ./scripts/publish"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.6",
"@storybook/addon-console": "^1.0.0",
"@storybook/react": "^3.4.6",
"@types/react": "^16.3.16",
"@types/shelljs": "^0.8.0",
"antd": "^3.4.0",
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"inquirer": "^6.0.0",
"lint-staged": "^7.1.3",
"mobx": "^4.3.0",
"mobx-react": "^5.1.2",
"prettier": "^1.10.2",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-router-dom": "^4.3.1",
"react-tippy": "^1.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"shelljs": "^0.8.2",
"styled-components": "^3.3.2"
},
"dependencies": {
"joi-browser": "^13.0.1",
"polished": "^1.9.3",
"popper.js": "^1.14.4",
"query-string": "^6.1.0",
"react-content-loader": "^3.1.2",
"react-sortable-hoc": "^0.8.3",
"react-spring": "^5.3.18",
"react-virtualized": "^9.20.0",
"styled-tools": "^0.6.0"
},
"peerDependencies": {
"antd": "^3.0.0 || ^2.0.0",
"mobx": ">= 4.0.0 < 5",
"mobx-react": "^5.0.0",
"moment": "*",
"prop-types": "^15.0.0",
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"styled-components": "^3.0.0"
},
"lint-staged": {
"src/**/*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}