-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 950 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 950 Bytes
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
{
"name": "project",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "nezu",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"lint": "eslint . --ext .ts",
"build": "tsc"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/luxon": "^2.3.1",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.13",
"ts-node": "^10.3.0",
"typescript": "^4.4.3"
},
"dependencies": {
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.1",
"morgan": "^1.10.0"
}
}