-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "flight-api",
"version": "1.0.0",
"description": "API to return flight information backed by a local database",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint \"./src/**/*.{js,ts}\" --quiet --fix",
"start": "tsc && node build/app.js",
"test": "tsc && cross-env NODE_ENV=test jest",
"watch": "nodemon -e ts --exec \"npm run start\""
},
"author": "Daniel Ward",
"license": "GPL",
"devDependencies": {
"@types/compression": "^1.0.1",
"@types/config": "0.0.36",
"@types/eslint": "^6.1.3",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.25",
"@types/lokijs": "^1.5.3",
"@types/lusca": "^1.6.1",
"@types/morgan": "^1.7.37",
"@types/node": "^13.1.6",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"cross-env": "^6.0.3",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"compression": "^1.7.4",
"config": "^3.2.4",
"express": "^4.17.1",
"express-session": "^1.17.0",
"fs-extra": "^8.1.0",
"lokijs": "^1.5.8",
"lusca": "^1.6.1",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.13"
}
}