-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "hip",
"version": "1.0.0",
"description": "An implementation of Flash Org",
"main": "index.js",
"engines": {
"node": "12.16.3"
},
"scripts": {
"install-frontend": "cd frontend && npm install",
"start": "nodemon app.js",
"build": "cd frontend && npm run build",
"frontend-install": "cd frontend && npm install",
"frontend": "cd frontend && npm start",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"heroku-postbuild": "npm run install-frontend && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carboclan/hip.git"
},
"keywords": [
"ethereum",
"hackahton",
"DAO"
],
"author": "YellowHat DAO",
"license": "ISC",
"bugs": {
"url": "https://github.com/carboclan/karm/issues"
},
"homepage": "https://github.com/carboclan/karm#readme",
"dependencies": {
"@nebulous/skynet": "^1.0.1",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"case-converter": "^1.0.1",
"clean-css": ">=4.1.11",
"coinbase-commerce-node": "^1.0.0",
"concurrently": "^5.2.0",
"constantinople": ">=3.1.1",
"cors": "^2.8.4",
"cron": "^1.4.1",
"errorhandler": "^1.5.0",
"express": "^4.17.1",
"express-mysql-session": "^1.3.0",
"express-session": "^1.15.6",
"is-empty": "^1.2.0",
"json-merge-patch": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"method-override": "^2.3.10",
"mongoose": "^5.9.13",
"morgan": "^1.9.0",
"multer": "^1.3.1",
"multer-s3": "^2.7.0",
"mysql": "^2.15.0",
"mysql2": "^1.6.1",
"node-cron": "^2.0.1",
"nodemailer": "^4.6.4",
"package.json": "^2.0.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"randomstring": "^1.1.5",
"serve-favicon": "^2.5.0",
"solc": "^0.6.7",
"spotify-web-api-node": "^4.0.0",
"stripe": "^6.1.0",
"twilio": "^3.17.0",
"typedarray-to-buffer": "^3.1.5",
"uuid": "^3.2.1",
"validator": "^13.0.0",
"web3": "^1.2.7"
},
"devDependencies": {
"nodemon": "^1.19.4"
}
}