-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
36 lines (36 loc) · 1.2 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
{
"name": "h0dev",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.1",
"command-line-args": "^5.2.1",
"esbuild": "^0.15.10",
"express": "^4.18.2",
"fs-extra": "^11.1.0",
"linkedom": "^0.14.17",
"typescript": "^4.8.4"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@playwright/test": "^1.27.1",
"@types/express": "^4.17.14",
"@vercel/edge": "^0.1.2",
"find-free-port": "^2.0.0",
"nodemon": "^2.0.20",
"playwright": "^1.27.1",
"todomvc-app-css": "^2.4.2",
"todomvc-common": "^1.0.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3"
},
"scripts": {
"test": "playwright test --workers 1",
"build:vercel:movies": "node ./build-vercel.js --ssr ./examples/movies --minify --stream",
"start:dev:movies:ssr": "nodemon ./cli.js --ssr --dir examples/movies --port 8000 -u examples/movies/public --stream --watch ./examples --ext ts,js,mjs,json,html,css"
}
}