-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.09 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
{
"name": "collab-to-grow-clent",
"version": "1.0.0",
"dependencies": {
"@8base/app-provider": "^0.6.5",
"@8base/auth": "^0.6.5",
"@8base/boost": "^0.9.1",
"@8base/file-input": "^0.13.0",
"@8base/forms": "^0.6.5",
"@8base/table-schema-provider": "^0.6.5",
"apollo-client": "^2.5.1",
"deepmerge": "^2.2.1",
"emotion": "^9.2.12",
"final-form": "^4.10.0",
"final-form-arrays": "^1.1.0",
"graphql": "^0.13.0",
"graphql-tag": "^2.9.2",
"luxon": "^1.5.0",
"numeral": "^2.0.6",
"prop-types": "^15.6.2",
"pure-logger": "0.0.1",
"ramda": "^0.25.0",
"react": "^16.6.0",
"react-apollo": "^2.2.4",
"react-dom": "^16.6.0",
"react-emotion": "^9.2.12",
"react-final-form": "^3.6.7",
"react-final-form-arrays": "^1.1.0",
"react-moment": "^0.8.4",
"react-number-format": "^4.0.6",
"react-router-dom": "^4.4.0-alpha.6",
"react-scripts": "^2.1.1",
"react-toastify": "^4.4.0",
"recompose": "^0.27.0"
},
"scripts": {
"start": "cross-env react-scripts start",
"build": "cross-env react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"eslint": "eslint src/**/*.js"
},
"license": "MIT",
"devDependencies": {
"babel-eslint": "^9.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-react-app": "^3.0.5",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.89.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.0.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}