-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
60 lines (60 loc) · 1.63 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
53
54
55
56
57
58
59
60
{
"name": "frourio",
"version": "0.0.0",
"description": "Fast and type-safe full stack framework, for TypeScript",
"author": "Solufa <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "bin/index.js",
"homepage": "https://frourio.com",
"repository": {
"type": "git",
"url": "git+https://github.com/frouriojs/frourio.git"
},
"bugs": {
"url": "https://github.com/frouriojs/frourio/issues"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"aspida",
"fastify"
],
"scripts": {
"dev": "npm run build && cd servers && aspida && node build.js",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"lint": "eslint . && prettier --check \"./**/*.{ts,js}\"",
"lint:fix": "eslint . --fix && prettier --write \"./**/*.{ts,js}\"",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"aspida": "^1.14.0",
"velona": "^0.8.0"
},
"devDependencies": {
"@aspida/axios": "^1.14.0",
"@aspida/node-fetch": "^1.14.0",
"@fastify/multipart": "^8.3.0",
"@types/busboy": "^1.5.4",
"@types/node-fetch": "^2.6.11",
"axios": "^1.7.2",
"eslint": "^8.57.0",
"eslint-config-flat-gitignore": "^0.1.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-promise": "^6.5.1",
"fastify": "^4.28.1",
"node-fetch": "^2.6.12",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3",
"zod": "^3.23.8"
}
}