-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "otc-parity",
"version": "1.0.0",
"description": "Blockchain OTC Market Backend",
"license": "MIT",
"author": "ITP Innovative Technologie Projekte GmbH",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"bcrypt": "2.0.1",
"body-parser": "1.18.2",
"cors": "2.8.4",
"eth-lightwallet": "https://github.com/dividezero/eth-lightwallet/tarball/4c73b5aff88881d1ca20174ff307d53e4ff1488b",
"express": "4.16.3",
"express-winston": "2.5.1",
"jsonwebtoken": "8.2.1",
"mkdirp": "0.5.1",
"mongoose": "5.0.15",
"mongoose-beautiful-unique-validation": "7.1.1",
"nconf": "0.10.0",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"solc": "0.4.21",
"web3": "1.0.0-beta.33",
"winston": "2.4.1"
},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.0.1",
"gulp": "3.9.1",
"gulp-eslint": "4.0.2",
"gulp-help": "1.6.1",
"gulp-jslint": "1.0.10",
"gulp-util": "3.0.8",
"which": "1.3.0"
},
"engines": {
"node": ">= 8.10.0",
"npm": ">= 5.7.0"
},
"main": "backend/index.js",
"scripts": {
"start": "node backend/setup && node backend/index",
"setup": "node backend/setup",
"lint": "./node_modules/gulp/bin/gulp.js lint",
"dev": "./node_modules/gulp/bin/gulp.js dev"
}
}