-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 KB
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": "express-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node ./utils --env && npm run build:prep && npm run build:node && npm run build:vite",
"build:prep": "node ./utils --rm",
"build:node": "npx tsc",
"build:vite": "npm run build --prefix ./vite",
"watch": "node ./utils --env && concurrently \" npm run watch:vite \" \" npm run watch:node \"",
"watch:vite": "npm run watch --prefix ./vite",
"watch:node": "concurrently \"npx tsc --watch --preserveWatchOutput\" \"nodemon -q dist/node/index.js\"",
"check:vite": "npm run check --prefix ./vite",
"start": "node dist/node/index.js",
"postinstall": "cd vite && npm install"
},
"keywords": [],
"author": "OnlyPain-ctrl",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"path": "^0.12.7"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.6.4",
"concurrently": "^7.3.0",
"nodemon": "^2.0.19",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
}
}