-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.49 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
{
"name": "frourio-template-railway-tailwind",
"version": "1.0.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "run-p dev:*",
"dev:client": "npm run dev --prefix frontend-web",
"dev:server": "npm run dev --prefix backend-api",
"generate": "run-p generate:*",
"generate:client": "npm run generate --prefix frontend-web",
"generate:server": "npm run generate --prefix backend-api",
"test": "run-p test:*",
"test:client": "npm run test --prefix frontend-web",
"test:server": "npm run test --prefix backend-api",
"typecheck": "run-p typecheck:*",
"typecheck:client": "npm run typecheck --prefix frontend-web",
"typecheck:server": "npm run typecheck --prefix backend-api",
"lint": "run-p lint:*",
"lint:client": "npm run lint --prefix frontend-web",
"lint:server": "npm run lint --prefix backend-api"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"aspida": "^1.14.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"npm-run-all2": "^7.0.1",
"pathpida": "^0.22.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"react": "^18.3.1",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vitest": "^2.1.5"
}
}