-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
{
"name": "rara-tech-challenge",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"proxy": "http://localhost:8080",
"homepage": "https://rara.social",
"scripts": {
"start": "react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "node server/index.js",
"dev": "nodemon --inspect server/index.js",
"docker-build": "REACT_APP_BUILD_TIME=$(date +%s) react-scripts build && docker build . -t <repo>/<name> && docker push <repo>/<name>",
"ssh": "echo 'not setup'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/providers": "^5.0.24",
"@reach/dialog": "^0.13.2",
"@reach/router": "^1.3.4",
"@reach/visually-hidden": "^0.13.2",
"big-number": "^2.0.0",
"bignumber.js": "^9.0.1",
"connect-mongodb-session": "^2.4.1",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"mongoose-bignumber": "^1.2.0",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"nodemon": "^2.0.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1",
"react-spring": "^8.0.27",
"react-use-dimensions": "^1.2.1",
"socket.io": "^3.0.4",
"socket.io-client": "^3.0.4",
"web3": "^1.3.4",
"web3modal": "^1.9.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"nodemonConfig": {
"watch": [
"server/*"
],
"delay": "2500",
"ext": "js json"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {}
}