-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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
{
"name": "retro",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx run-many --targets=build --all",
"frontend:build": "nx build frontend",
"backend:build": "nx build backend",
"signaling:build": "nx build signaling",
"frontend:start": "nx start frontend",
"backend:start": "nx start backend",
"signaling:start": "nx start signaling",
"frontend:dev": "nx dev frontend",
"backend:dev": "nx dev backend",
"signaling:dev": "nx dev signaling",
"watch": "nx run-many --targets=build:watch --all",
"e2e": "npx playwright test",
"e2e:headed": "npx playwright test --headed",
"e2e:debug": "npx playwright test --debug",
"e2e:dev": "npx playwright test --ui",
"format:check": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"contributors:add": "all-contributors add",
"contributors:check": "all-contributors check",
"contributors:generate": "all-contributors generate",
"test": "jest"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.46.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.18.0",
"all-contributors-cli": "^6.26.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.1.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"nx": "19.6.0",
"prettier": "^3.3.2",
"rimraf": "^6.0.0",
"ts-jest": "^29.2.0",
"typescript": "^5.5.2"
},
"workspaces": [
"packages/*",
"packages/shared/*"
]
}