-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.06 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
{
"name": "speedread",
"author": "benjamin kagia",
"version": "0.1.0",
"private": true,
"homepage": "https://kagia.github.io/speedread",
"dependencies": {
"@types/jest": "23.3.13",
"@types/node": "10.12.18",
"@types/react": "16.7.20",
"@types/react-dom": "16.0.11",
"antd": "^3.12.4",
"mobx": "^5.8.0",
"mobx-react": "^5.4.3",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-scripts": "2.1.3",
"typescript": "3.2.4"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "rescripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@rescripts/cli": "^0.0.8",
"@rescripts/rescript-use-babel-config": "^0.0.5",
"@storybook/addon-actions": "^4.1.7",
"@storybook/addon-links": "^4.1.7",
"@storybook/addons": "^4.1.7",
"@storybook/react": "^4.1.7",
"@types/storybook__addon-actions": "^3.4.1",
"@types/storybook__addon-links": "^3.3.3",
"@types/storybook__react": "^4.0.0",
"babel-loader": "8.0.4",
"babel-plugin-import": "^1.11.0",
"babel-plugin-module-resolver": "^3.1.2",
"gh-pages": "^2.0.1",
"mobx-react-devtools": "^6.0.3"
},
"rescripts": [
[
"use-babel-config",
"package"
]
],
"babel": {
"presets": [
[
"react-app",
{
"flow": false,
"typescript": true
}
]
],
"plugins": [
[
"import",
{
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"
}
],
[
"module-resolver",
{
"alias": {
"mobx": "./node_modules/mobx/lib/mobx.es6.js"
}
}
]
]
}
}