-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "backend",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/Kryptos-Team/crypto-pool.git"
},
"main": "server.js",
"scripts": {
"client": "npm start --prefix client",
"client-install": "npm install --prefix client",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"full-install": "npm install && npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js"
},
"keywords": [],
"author": "Abhimanyu Saharan <desk.abhimanyu@gmail.com>",
"license": "ISC",
"dependencies": {
"async": "^3.1.0",
"base58-native": "^0.1.4",
"bcryptjs": "^2.4.3",
"bignum": "0.12.0",
"body-parser": "^1.19.0",
"colors": "^1.3.3",
"concurrently": "^4.1.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dateformat": "^3.0.3",
"express": "^4.17.1",
"express-session": "^1.16.2",
"http-errors": "^1.7.3",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"multi-hashing": "git://github.com/zone117x/node-multi-hashing.git",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"posix": "^4.1.2",
"ra-data-simple-rest": "^2.9.6",
"ra-jsonapi-client": "^0.5.0",
"validation": "0.0.1",
"validator": "^11.1.0"
},
"devDependencies": {
"nodemon": "^1.19.2"
},
"engines": {
"node": ">0.10"
}
}