This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
105 lines (105 loc) · 2.59 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
{
"private": true,
"description": "A day without a new HOC is a day wasted",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@start/cli": "^0.3.0",
"@start/plugin-env": "^0.3.0",
"@start/plugin-find": "^0.2.0",
"@start/plugin-lib-babel": "^0.2.0",
"@start/plugin-lib-codecov": "^0.2.0",
"@start/plugin-lib-eslint": "^0.3.0",
"@start/plugin-lib-jest": "^0.3.0",
"@start/plugin-lib-webpack-serve": "^0.3.0",
"@start/plugin-parallel": "^0.2.0",
"@start/plugin-read": "^0.2.0",
"@start/plugin-remove": "^0.2.1",
"@start/plugin-sequence": "^0.2.0",
"@start/plugin-write": "^0.2.0",
"@start/reporter-verbose": "^0.1.0",
"@start/task": "^0.1.0-0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.4.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"metro-react-native-babel-preset": "^0.44.0",
"raf": "^3.3.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-hot-loader": "^4.3.5",
"react-test-renderer": "^16.4.2",
"recompose": "^0.29.0",
"webpack": "^4.17.1"
},
"start": {
"require": [
"@babel/register"
],
"reporter": "@start/reporter-verbose"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": false
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"standard",
"promise",
"import",
"react"
],
"extends": [
"standard",
"standard-react",
"plugin:promise/recommended",
"plugin:import/recommended",
"plugin:react/recommended"
],
"rules": {
"react/prop-types": "off",
"import/unambiguous": "off"
},
"env": {
"jest": true,
"browser": true,
"node": true
}
},
"eslintIgnore": [
"build/",
"coverage/",
"node_modules/"
]
}