-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 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
{
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:frontend": "pnpm --filter \"frontend\" dev --open --host",
"dev:backend": "pnpm --filter \"backend\" dev",
"test:backend": "pnpm --filter \"backend\" test",
"build:frontend": "pnpm --filter \"frontend\" build && ts-node ./scripts/build.ts",
"build:backend": "pnpm --filter \"backend\" build",
"build": "pnpm build:frontend && pnpm build:backend",
"check": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-or-later",
"packageManager": "pnpm@7.5.0",
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/babel__core": "^7.1.19",
"@types/node": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-solid": "^0.7.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"typescript-plugin-css-modules": "^3.4.0"
},
"dependencies": {
"adm-zip": "^0.5.9",
"backend": "workspace:*",
"frontend": "workspace:*",
"ts-node": "^10.9.1",
"types": "workspace:*"
}
}