-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 880 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
37
{
"name": "basic-express-typescript-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist/ && npx tsc",
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "npm run build && concurrently \"npx tsc --watch\" \"cross-env NODE_ENV=development nodemon -q dist/index.js\""
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.11",
"concurrently": "^8.0.1",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"keywords": [
"express",
"typescript",
"template",
"starter",
"minimal",
"basic",
"cross-env",
"file watch",
"file monitoring"
],
"author": "CudiLala",
"license": "MIT"
}