-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 817 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 817 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
{
"name": "create-node-ts-template",
"version": "1.0.0",
"description": "A simple boilerplate for TypeScript + Express + CORS + Axios",
"main": "dist/server.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"build": "tsc",
"start": "node dist/server.js"
},
"keywords": [
"typescript",
"express",
"cors",
"axios",
"boilerplate"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"cors": "^2.8.5",
"express": "^4.21.2",
"fs-extra": "^11.2.0",
"http-errors": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
}
}