-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 917 Bytes
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
{
"name": "python-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173 --strictPort",
"serve": "node tests/server.mjs",
"test": "npm run test:py && npm run test:browser",
"test:py": "python3 -m pytest",
"test:browser": "playwright test",
"test:app": "playwright test app",
"test:ghpages": "playwright test -c playwright.ghpages.config.ts",
"test:headed": "playwright test --headed",
"lockfile:fix": "node scripts/normalize-lockfile.mjs",
"lockfile:check": "node scripts/normalize-lockfile.mjs --check",
"postinstall": "node scripts/normalize-lockfile.mjs"
},
"devDependencies": {
"@codemirror/lang-python": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@playwright/test": "^1.49.0",
"codemirror": "^6.0.2",
"vite": "^8.2.2"
}
}