-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@opentalk/monorepo",
"version": "999.0.0-unreleased",
"description": "OpenTalk Monorepo",
"private": true,
"scripts": {
"lint": "pnpm run -r lint",
"fmt": "pnpm prettier --write \"./*.{tsx,ts}\" \"./**/*.{tsx,ts}\"",
"fmt:ci": "pnpm prettier --check \"./*.{tsx,ts}\" \"./**/*.{tsx,ts}\"",
"start": "pnpm build:libs && pnpm --filter '@opentalk/opentalk' start",
"start:hot": "pnpm build:libs && pnpm --filter './packages/**' run hot-reload:remove-build && pnpm --filter '@opentalk/opentalk' start:hot",
"analyze": "pnpm build:libs && pnpm --filter '@opentalk/opentalk' analyze",
"watch": "pnpm run -r watch",
"build": "pnpm run -r build",
"build:libs": "pnpm --filter './packages/**' run build",
"build:profiler": "pnpm build:libs && pnpm --filter '@opentalk/opentalk' build:profiler --profile",
"test:unit": "pnpm build:libs && jest",
"test:unit:watch": "pnpm build:libs && jest --watchAll",
"test:unit:ci": "pnpm build:libs && jest --coverage --no-cache --silent --ci",
"test:unit:ide": "jest",
"test:e2e": "npx playwright test --config playwright.config.ts",
"clean": "del-cli app/node_modules packages/*/node_modules dist/app node_modules .parcel-cache"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@parcel/transformer-typescript-types": "~2.5.0",
"@playwright/test": "^1.44.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/identity-obj-proxy": "^3",
"@types/node": "^20.14.5",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-jest": "^29.7.0",
"babel-plugin-inline-react-svg": "^2.0.2",
"del-cli": "^5.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"fs": "^0.0.1-security",
"identity-obj-proxy": "^3.0.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-loader": "^9.4.2",
"typescript": "~4.7.3"
},
"packageManager": "pnpm@9.9.0",
"resolutions": {
"lmdb": "2.6.8",
"decode-uri-component": "0.2.1",
"glob-parent": "5.1.2",
"http-cache-semantics": "4.1.1",
"minimatch": "3.0.5",
"nth-check": "2.0.1",
"yaml": "^2.2.2",
"semver": "^7.5.2",
"optionator": "^0.9.3",
"@babel/traverse": "^7.23.2",
"ip": "^2.0.1",
"tar": "^6.2.1",
"ws": "^8.17.1"
}
}