-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "frontend-base",
"version": "1.0.0",
"description": "Cbot sample for cryptocurrency",
"main": "index.js",
"scripts": {
"mongo": "babel-node startMongo",
"start": "babel-node index",
"clean": "rimraf build",
"prettify": "prettier --write '**/*.{js,json,css}'",
"precommit": "lint-staged",
"test": "jest --watchAll"
},
"prettier": {
"singleQuote": true
},
"jest": {},
"repository": {
"type": "git",
"url": "git+https://github.com/albanx/cbot.git"
},
"author": "Alban Xhaferllari",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.1"
},
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^3.0.0",
"colors": "^1.4.0",
"express": "^4.17.1",
"gdax": "^0.9.0",
"got": "^10.4.0",
"mongodb": "^3.5.2",
"pusher-js": "^5.0.3",
"redux": "^4.0.5",
"request": "^2.88.0",
"request-promise-native": "^1.0.8"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": "^8.3.0",
"yarn": "^1.0.0"
}
}