This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.71 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
{
"name": "rehentai-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@rescripts/rescript-env": "0.0.10",
"antd": "^3.20.7",
"async": "^3.1.0",
"browser-process-hrtime": "^1.0.0",
"cids": "^0.7.1",
"file-type": "^12.1.0",
"filesize": "^4.1.2",
"gh-pages": "^2.0.1",
"history": "^4.9.0",
"ipfs": "^0.36.4",
"ipfs-unixfs": "^0.1.16",
"lodash": "^4.17.15",
"mime-types": "^2.1.24",
"multihashes": "^0.4.15",
"preval.macro": "^3.0.0",
"promisify-es6": "^1.0.3",
"query-string": "^6.8.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"readable-stream-node-to-web": "^1.0.1",
"servertiming": "^1.5.0",
"stream": "^0.0.2",
"styled-components": "^4.3.2",
"styled-flex-component": "^3.0.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"lint": "eslint . --fix"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "^7.5.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.5.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@rescripts/cli": "0.0.11",
"babel-plugin-array-last-index": "0.0.4",
"babel-plugin-closure-elimination": "^1.3.0",
"babel-plugin-flow-runtime": "^0.19.0",
"babel-plugin-import": "^1.12.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-inline-elements": "^6.22.0",
"cross-env": "^5.2.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^3.12.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.5.0",
"flow-typed": "^2.6.1",
"husky": "^3.0.2",
"lint-staged": "^9.2.1",
"rescript-disable-eslint": "^1.0.1",
"rescript-service-worker-loader": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}