-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "bitcoin_arb",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon app.js",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/alscotty/bitcoin_arb.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alscotty/bitcoin_arb/issues"
},
"homepage": "https://github.com/alscotty/bitcoin_arb#readme",
"dependencies": {
"axios": "^1.7.9",
"concurrently": "^9.1.2",
"cookie-parser": "^1.4.7",
"esm": "^3.2.25",
"express": "^4.21.2",
"nodemon": "^3.1.9"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off"
}
}
}