-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 737 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 737 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
{
"name": "vxthreads",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"express": "^4.19.2",
"node-fetch": "2"
},
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"dev": "ts-node src/app.ts",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"wrangler": "^3.3.0"
}
}