-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
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
84
{
"name": "express-typescript-starter",
"version": "0.1.0",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/TypeScript-Node-Starter"
},
"author": "Bowden Kelly",
"license": "MIT",
"scripts": {
"start": "node dist/bin",
"prebuild": "rimraf dist",
"build": "npm run build-ts && npm run lint",
"serve": "nodemon -e js,ts -x \"ts-node bin\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^8.0.8",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"convict": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"faker": "^4.1.0",
"fp-ts": "^2.6.1",
"koa": "^2.12.0",
"koa-bodyparser": "^4.3.0",
"koa-morgan": "^1.0.1",
"mongoose": "^5.9.15",
"nedb": "^1.8.0",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.32",
"@types/body-parser": "^1.19.0",
"@types/component-emitter": "^1.2.9",
"@types/compression": "^1.7.0",
"@types/concurrently": "^4.1.1",
"@types/connect-mongo": "^3.1.3",
"@types/convict": "^5.2.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^6.8.1",
"@types/faker": "^4.1.12",
"@types/jest": "^24.9.1",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-morgan": "^1.0.4",
"@types/koa__cors": "^3.0.1",
"@types/koa__router": "^8.0.2",
"@types/mongoose": "^5.7.21",
"@types/nedb": "^1.8.9",
"@types/node": "^12.12.41",
"@types/shortid": "^0.0.29",
"@types/socket.io": "^2.1.6",
"@types/socket.io-client": "^1.4.33",
"@types/supertest": "^2.0.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"get-port": "^5.1.1",
"jest": "^24.9.0",
"jest-mock-extended": "^1.0.8",
"nodemon": "^2.0.4",
"prettier": "^1.18.2",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}