-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.21 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
{
"name": "lyra",
"version": "0.0.1",
"description": "Root package of Lyra",
"private": true,
"engines": {
"node": ">=18.17"
},
"workspaces": {
"packages": [
"webapp"
]
},
"scripts": {
"build": "npm run --workspaces build",
"test": "npm run --workspaces test",
"lint:formatting": "npm run --workspaces lint:formatting",
"lint:eslint": "npm run --workspaces lint:eslint"
},
"keywords": [
"lyra"
],
"devDependencies": {
"@types/mock-fs": "^4.13.4",
"@types/node": "^20",
"@types/react": "~18.3.3",
"@types/react-dom": "~18.3.0",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"eslint": "^7.15.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-no-switch-statements": "^1.0.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-yml": "^0.13.0",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.2",
"typescript": "^5"
}
}