-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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": "mprc-back",
"version": "0.1.0",
"description": "MPRC backend server",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node ./src/index.ts",
"start:dev": "cross-env NODE_ENV=dev npm run start",
"test": "cross-env NODE_ENV=test mocha --require ts-node/register ./test/index.test.ts --exit"
},
"author": "LenaBuraya",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node-fetch": "^2.3.4",
"cross-env": "^5.2.0",
"mocha": "^6.1.4",
"node-fetch": "^2.6.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"@types/fs-extra": "^5.1.0",
"@types/handlebars": "^4.1.0",
"@types/joi": "^14.3.3",
"@types/knex": "^0.16.1",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.2",
"@types/koa-passport": "^4.0.2",
"@types/koa-router": "^7.0.40",
"@types/koa-session": "^5.10.0",
"@types/koa__cors": "^2.2.3",
"@types/nodemailer": "^4.6.8",
"@types/passport-local": "^1.0.33",
"@types/pg": "^7.4.14",
"config": "^3.1.0",
"crypto": "^1.0.1",
"fs-extra": "^8.0.0",
"handlebars": "^4.1.2",
"joi": "^14.3.1",
"keccak256": "^1.0.0",
"knex": "0.16.5",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-passport": "^4.1.3",
"koa-router": "^7.4.0",
"koa-session": "^5.11.0",
"nodemailer": "^6.1.1",
"passport-local": "^1.0.0",
"pg": "^7.11.0"
}
}