-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.33 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
82
83
{
"name": "synergy_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "npx tslint -e **/node_modules/** -e **/dist/** -t codeFrame **/*.ts",
"watch": "npx webpack --watch",
"start": "npx webpack && node ./dist/App.js",
"test": "npx mocha --timeout 30000 -b -r ts-node/register ./test/*.test.ts",
"citest": "ci/test.sh"
},
"author": "",
"license": "AGPL-v3",
"dependencies": {
"@sentry/node": "5.24.2",
"@truffle/contract": "4.2.23",
"@types/node-schedule": "^1.3.1",
"await-to-ts": "1.0.6",
"bcrypt": "5.0.0",
"body-parser": "1.19.0",
"chai-as-promised": "7.1.1",
"chai-string": "1.5.0",
"class-transformer": "0.3.1",
"class-validator": "0.12.2",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"crypto": "1.0.1",
"crypto-ts": "1.0.2",
"dotenv": "8.2.0",
"email-templates": "7.1.1",
"envalid": "6.0.2",
"express": "4.17.1",
"jsonwebtoken": "8.5.1",
"latinize": "^0.4.0",
"mongoose": "5.10.7",
"multer": "1.4.2",
"node-schedule": "^1.3.2",
"nodemailer": "6.4.11",
"quorum-js": "^0.3.5",
"saslprep": "1.0.3",
"serialize-javascript": "4.0.0",
"web3-eth": "1.3.0"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/bluebird": "3.5.32",
"@types/chai-as-promised": "7.1.3",
"@types/chai-http": "4.2.0",
"@types/chai-string": "1.4.2",
"@types/chai": "4.2.12",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.7",
"@types/email-templates": "7.1.0",
"@types/express": "4.17.7",
"@types/jsonwebtoken": "8.5.0",
"@types/latinize": "^0.2.15",
"@types/mocha": "8.0.3",
"@types/mongoose": "5.7.36",
"@types/multer": "1.4.4",
"@types/nodemailer": "6.4.0",
"@types/rimraf": "3.0.0",
"@types/should": "13.0.0",
"@types/sinon": "9.0.7",
"@types/supertest": "2.0.10",
"@types/webpack": "4.41.21",
"awesome-typescript-loader": "5.2.1",
"chai-http": "4.3.0",
"chai": "4.2.0",
"mocha": "8.1.3",
"nodemon-webpack-plugin": "^4.3.1",
"should": "13.2.3",
"sinon": "9.1.0",
"supertest": "4.0.2",
"ts-node": "9.0.0",
"tslint-config-standard": "9.0.0",
"tslint": "6.1.3",
"typescript": "4.0.3",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack": "4.44.2"
}
}