forked from dominiek/app-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "app-skeleton",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && webpack -p",
"start": "node ./serve",
"static": "node ./serve-static",
"lint": "eslint src --fix",
"test:watch": "jest --watch"
},
"dependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-plugin-mobx-deep-action": "^1.6.0",
"babel-plugin-styled-components": "1.5.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"css-loader": "0.28.11",
"exports-loader": "0.7.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"final-form": "4.5.2",
"history": "4.7.2",
"html-webpack-plugin": "3.2.0",
"imports-loader": "0.8.0",
"koa": "2.5.0",
"koa-compress": "3.0.0",
"koa-static": "4.0.2",
"less": "2.7.3",
"less-loader": "4.1.0",
"lodash": "4.17.5",
"mobx": "4.2.0",
"mobx-react": "5.1.2",
"mobx-react-devtools": "5.0.1",
"mobx-react-router": "4.0.3",
"mobx-utils": "4.0.1",
"raw-loader": "0.5.1",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-final-form": "3.3.1",
"react-hot-loader": "4.1.0",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"semantic-ui-less": "2.3.1",
"semantic-ui-react": "0.79.1",
"style-loader": "0.21.0",
"styled-components": "3.2.6",
"url-loader": "1.0.1",
"webpack": "4.5.0",
"whatwg-fetch": "2.0.4"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"eslint": "4.19.1",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-react": "7.7.0",
"jest": "22.4.3",
"koa-webpack": "3.0.2",
"prettier": "1.12.1",
"prettier-eslint": "8.8.1",
"webpack-cli": "2.1.2"
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": true
},
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"react/display-name": 0,
"react/prop-types": 0,
"react/no-unescaped-entities": [
"error",
{
"forbid": [
">",
"}"
]
}
]
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": [
"node_modules",
"src"
]
}
}
}
},
"prettier": {
"singleQuote": true,
"arrowParens": "always"
}
}