-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2 KB
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
{
"name": "frourio-framework",
"version": "1.0.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "concurrently --names=\"Frontend(Web),Backend(API)\" \"npm run dev:client\" \"npm run dev:server\" -c blue,cyan",
"dev:client": "npm run dev --prefix frontend-web",
"dev:server": "npm run dev --prefix backend-api",
"generate": "concurrently --names=\"Frontend(Web),Backend(API)\" \"npm run generate:client\" \"npm run generate:server\" -c blue,cyan",
"generate:client": "npm run generate --prefix frontend-web",
"generate:server": "npm run generate --prefix backend-api",
"test": "concurrently --names=\"Frontend(Web),Backend(API)\" \"npm run test:client\" \"npm run test:server\" -c blue,cyan",
"test:client": "npm run test --prefix frontend-web",
"test:server": "npm run test --prefix backend-api",
"typecheck": "concurrently --raw --names=\"Frontend(Web),Backend(API)\" \"npm run typecheck:client\" \"npm run typecheck:server\" -c blue,cyan",
"typecheck:client": "npm run typecheck --prefix frontend-web",
"typecheck:server": "npm run typecheck --prefix backend-api",
"lint": "concurrently --names=\"Frontend(Web),Backend(API)\" \"npm run lint:client\" \"npm run lint:server\" -c blue,cyan",
"lint:client": "npm run lint --prefix frontend-web",
"lint:server": "npm run lint --prefix backend-api",
"artisan": "npm run artisan --prefix backend-api"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"aspida": "^1.14.0",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.1",
"eslint-config-prettier": "^10.1.8",
"concurrently": "^9.2.1",
"pathpida": "^0.25.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.8"
},
"dependencies": {
"frourio-framework-prisma-generators": "^6.9.0"
}
}