-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "flight-engine",
"version": "1.0.0",
"description": "Mock flight data delivered simply and quickly without a database.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --watch .env.local --respawn src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.build.json --pretty",
"typecheck": "tsc",
"test": "jest",
"test:coverage": "yarn test --coverage",
"prettier": "prettier -cu \"**/*\"",
"prettier:fix": "yarn prettier --write",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "yarn lint --fix",
"clean": "rimraf dist"
},
"dependencies": {
"@americanairlines/simple-env": "^1.0.4",
"cors": "^2.8.5",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"haversine-distance": "^1.2.1",
"luxon": "^2.5.2",
"seedrandom": "^3.0.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^6.1.1",
"@types/dotenv-flow": "^3.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/luxon": "^2.0.4",
"@types/node": "^16.9.1",
"@types/seedrandom": "^3.0.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.2.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"keywords": [
"Node",
"TypeScript",
"Jest",
"Express",
"Flight Data",
"Travel"
],
"author": "Spencer Kaiser <spencer.kaiser@aa.com>, John Kahn <john.kahn@aa.com>",
"license": "MIT"
}