-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "dinner-time",
"version": "1.0.0",
"description": "An API resource for menu creation",
"scripts": {
"start": "nodemon ./src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duncangrubbs/dinner-time.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/duncangrubbs/dinner-time/issues"
},
"homepage": "https://github.com/duncangrubbs/dinner-time#readme",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"express": "^4.17.1",
"express-winston": "^4.2.0",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"ts-node": "^10.2.1",
"winston": "^3.3.3"
}
}