-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 771 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 771 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
{
"name": "cookie-test",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Maxim Bureev <maxxborer@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "yarn && nodemon --exec ts-node src/index.ts",
"build": "tsc && node scripts/build.js",
"preview": "yarn && yarn build && node dist/index.js"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"dotenv": "16.4.7",
"ejs": "3.1.10",
"express": "5.1.0",
"serve-favicon": "^2.5.0",
"vhost": "3.0.2"
},
"devDependencies": {
"@types/ejs": "3.1.5",
"@types/express": "5.0.1",
"@types/node": "22.14.0",
"@types/serve-favicon": "^2.5.7",
"@types/vhost": "3.0.9",
"nodemon": "3.1.9",
"ts-node": "10.9.2",
"typescript": "5.8.3"
}
}