forked from Kaggle/kaggle-environments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.99 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.99 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
44
45
46
47
48
49
50
51
52
53
{
"private": true,
"packageManager": "pnpm@9.15.3",
"scripts": {
"dev": "node ./web/scripts/find-games.js dev",
"build": "node ./web/scripts/find-games.js build",
"build-all": "node ./web/scripts/find-games.js build --all",
"collect-artifacts": "./web/scripts/collect-artifacts.sh",
"build-ci": "pnpm build-all && pnpm collect-artifacts && pnpm validate-manifest && pnpm validate-conventions",
"validate-manifest": "node ./web/scripts/validate-manifest.js",
"validate-conventions": "node ./web/scripts/validate-visualizer-conventions.js",
"test-server": "node ./web/scripts/find-games.js test-server",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"format": "prettier --write '**/*.{js,jsx,ts,tsx}' 'kaggle_environments/envs/**/visualizer/**/*.json'",
"format-check": "prettier --check '**/*.{js,jsx,ts,tsx}' 'kaggle_environments/envs/**/visualizer/**/*.json'"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@fontsource/inter": "^5.2.8",
"@playwright/mcp": "^0.0.68",
"@playwright/test": "^1.50.0",
"@types/node": "^25.2.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^9.37.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"glob": "^13.0.1",
"globals": "^15.12.0",
"pnpm": "^9.0.0",
"postcss-styled-syntax": "^0.7.1",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"stylelint": "^16.25.0",
"stylelint-config-recommended": "^17.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^5.0.0",
"vite-plugin-checker": "^0.11.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"lefthook": "^2.0.16",
"marked": "^17.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}