-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "express-typescript-boilerplate",
"description": "Express and typescript boilerplate quickstart with live reload",
"version": "0.0.1",
"license": "WTFPL",
"private": false,
"main": "src/app.ts",
"author": {
"name": "Richard Jeffords",
"email": "[email protected]",
"url": "https://richard.pizza"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node dist/app.js",
"build": "tsc && cp -r src/public dist/public",
"dev": "nodemon --ignore public",
"watch": "nodemon --ignore public",
"ngrok": "source .env && cross-env ngrok http $PORT"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.22.20",
"@types/connect-livereload": "^0.6.3",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/livereload": "^0.9.5",
"@types/node": "^20.10.4",
"connect-livereload": "^0.6.1",
"cross-env": "^7.0.3",
"livereload": "^0.9.3",
"nodemon": "^3.0.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}