-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "dtty",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/jes3rk/dtty"
},
"license": "MIT",
"author": "Joseph Schefer",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn prebuild && tsc -p tsconfig.build.json",
"build:dry": "wrangler publish --dry-run --outdir build",
"prepare": "husky install",
"run:local": "wrangler dev --local",
"test": "jest --passWithNoTests",
"test:e2e": "jest --config ./testing/jest.e2e-config.js"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"itty-router": "^4.0.22",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240208.0",
"@swc/core": "^1.3.99",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.11",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.1",
"sort-package-json": "^2.5.1",
"supertest": "^6.3.3",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"wrangler": "^3.1.1"
},
"packageManager": "[email protected]"
}