-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "venmo.lol",
"homepage": "https://venmo.lol/",
"version": "0.1.0",
"dependencies": {
"antd": "^4.15.0",
"axios": "^0.21.1",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-force-graph-3d": "^1.21.15",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"three-spritetext": "^1.6.1"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/preset-flow": "^7.13.13",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.156.0",
"prettier": "^2.2.1"
},
"scripts": {
"start": "ESLINT_NO_DEV_ERRORS='true' react-scripts --openssl-legacy-provider start",
"lint": "eslint --fix src -c .eslintrc.json --ext js",
"format": "prettier --write \"./**/*.{js,jsx,json,md}\"",
"format:check": "prettier --check \"./**/*.{js,jsx,json,md}\"",
"flow": "flow",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
}
}