-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
94 lines (94 loc) · 2.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "create-frourio-app",
"version": "0.0.0",
"description": "Create a frourio project in seconds",
"author": "Solufa <[email protected]>",
"license": "MIT",
"bin": "bin/index.js",
"scripts": {
"dev": "run-p dev:*",
"dev:client": "npm run dev --prefix client",
"dev:server": "npm run dev --prefix server",
"build": "run-p build:*",
"build:client": "npm run build --prefix client",
"build:server": "npm run build --prefix server",
"lint": "run-p lint:*",
"lint:js": "eslint .",
"lint:prettier": "prettier --check \"./**/*.{ts,tsx,js}\"",
"fix:lint": "npm run lint:js -- --fix && npm run lint:prettier -- --write",
"test": "npm run test --prefix server",
"typecheck": "run-p typecheck:*",
"typecheck:client": "npm run typecheck --prefix client",
"typecheck:server": "npm run typecheck --prefix server"
},
"homepage": "https://frourio.com",
"repository": {
"type": "git",
"url": "git+https://github.com/frouriojs/create-frourio-app.git"
},
"bugs": {
"url": "https://github.com/frouriojs/create-frourio-app/issues"
},
"files": [
"bin",
"client/out",
"server/index.js",
"server/templates"
],
"keywords": [
"frourio",
"typescript"
],
"dependencies": {
"@aspida/axios": "^1.14.0",
"@aspida/swr": "^1.14.0",
"@fastify/multipart": "^9.0.3",
"@fastify/static": "^8.1.0",
"aspida": "^1.14.0",
"axios": "^1.7.9",
"commander": "^13.1.0",
"ejs": "^3.1.10",
"fastify": "^5.2.1",
"is-binary-path": "^2.1.0",
"next": "^15.1.6",
"open": "^8.4.0",
"portfinder": "^1.0.32",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"swr": "^2.3.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@types/ejs": "^3.1.5",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/tcp-port-used": "^1.0.4",
"@types/yaml": "^1.9.7",
"dotenv": "^16.4.7",
"esbuild": "^0.24.2",
"esbuild-node-externals": "^1.16.0",
"esbuild-register": "^3.6.0",
"eslint": "^9.19.0",
"eslint-config-flat-gitignore": "^2.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"fast-glob": "^3.3.3",
"form-data": "^4.0.1",
"frourio": "^1.3.1",
"globals": "^15.14.0",
"jiti": "^2.4.2",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tcp-port-used": "^1.0.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5",
"yaml": "^2.7.0"
}
}