-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"private": true,
"type": "module",
"workspaces": [
"client",
"server"
],
"resolutions": {
"path-to-regexp": "^0.1.12"
},
"scripts": {
"client": "yarn workspace client",
"server": "yarn workspace server",
"dev:client": "cd client && yarn dev",
"dev:server": "cd server && yarn dev",
"dev": "concurrently \"yarn dev:client\" \"yarn dev:server\"",
"build:client": "cd client && yarn build",
"build:server": "cd server && yarn build",
"build": "yarn build:client && yarn build:server",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:server": "eslint server/",
"lint:client": "eslint client/",
"lint:server:fix": "eslint server/ --fix",
"lint:client:fix": "eslint client/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test:server": "cd server && yarn test",
"test:server:cov": "cd server && yarn test:cov"
},
"packageManager": "[email protected]",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "~9.1.0",
"eslint-config-standard": "~17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "~16.6.2",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-promise": "~6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"globals": "^15.12.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"concurrently": "^9.1.0",
"fluent-ffmpeg": "^2.1.3"
}
}