-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 913 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
38
{
"name": "sphinx-btc-bot",
"version": "1.0.0",
"description": "Sphinx Bitcoin Price Bot",
"main": "index.js",
"scripts": {
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./index.js -s",
"build": "npm run clean && npm run build-babel",
"start": "node ./build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Evan Feenstra",
"license": "ISC",
"dependencies": {
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"regenerator-runtime": "^0.13.7",
"sphinx-bot": "^0.2.16"
},
"engines": {
"node": "12.x"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/core": "^7.1.2",
"@babel/node": "^7.10.5"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}