-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 784 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
{
"name": "note-endpoint",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "ts-node ./bin/www.ts",
"watch": "nodemon --ext *"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"pug": "^3.0.2",
"ts-node": "^10.9.1",
"yup": "^0.32.11",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.23",
"@types/yup": "^0.32.0",
"connect-livereload": "^0.6.1",
"livereload": "^0.9.3",
"nodemon": "^2.0.20",
"tslint": "^6.1.3"
}
}