-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.55 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.55 KB
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
{
"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": {
"build": "tsc",
"serve": "node dist/app.js",
"clean": "rm -rf dist",
"clean-serve": "npm run clean && npm run build && npm run serve",
"start": "npm run build && npm run serve",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/app.js",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\"",
"lint:fix": "eslint \"**/*.{js,ts}\" --fix",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/jsonwebtoken": "^8.5.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-local": "^1.0.0",
"pg": "^8.3.3",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"socket.io": "^2.3.0",
"typeorm": "^0.2.26",
"typescript": "^3.9.7",
"winston": "^3.3.3",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"nodemon": "^1.19.4"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/morgan": "^1.9.1",
"@types/redis": "^2.8.27",
"@types/socket.io": "^2.1.11",
"@types/async": "^3.2.3",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/concurrently": "^4.1.1",
"@types/errorhandler": "^0.0.32",
"@types/eslint": "^6.8.1",
"@types/express": "^4.17.8",
"@types/node": "^12.12.62",
"@types/passport": "^1.0.4",
"@types/passport-facebook": "^2.1.10",
"@types/passport-local": "^1.0.33",
"@types/shelljs": "^0.8.8",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0"
}
}