-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 868 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 868 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
{
"name": "zperiod",
"private": true,
"version": "2.0.0",
"scripts": {
"dev": "vite",
"lint": "eslint . --ext .js --cache --cache-location .eslintcache --quiet",
"check:syntax": "find . -name '*.js' -not -path './node_modules/*' -not -path './dist/*' -not -path './public/*' -print0 | xargs -0 -n1 node --check",
"audit:i18n": "node scripts/audit_translation_fallbacks.mjs",
"validate:ions": "python3 scripts/validate_ion_locales.py",
"check": "npm run lint && npm run check:syntax && npm run build",
"smoke": "playwright test",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@playwright/test": "^1.58.2",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"vite": "^7.3.1"
},
"dependencies": {
"driver.js": "^1.4.0",
"marked": "^17.0.4"
}
}