-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "bolero",
"version": "0.1.0",
"private": true,
"description": "A game",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ndujalags/bolero.git"
},
"author": "Francesco Sullo <[email protected]>",
"license": "MIT",
"dependencies": {
"@ethersproject/contracts": "^5.1.0",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"discord.js": "^12.5.3",
"dotenv": "^9.0.2",
"ethers": "^5.5.2",
"express": "^4.17.2",
"fs-extra": "^8.1.0",
"lodash": "^4.17.21",
"require-or-mock": "^0.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-react": "^6.10.3",
"mocha": "^8.2.1"
},
"scripts": {
"start": "node .",
"start:dev": "NODE_ENV=development node ."
},
"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"
]
},
"engines": {
"node": ">=16.0.0"
}
}