-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "supermercados",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Build da aplicação Gestão de Supermercados (compila o JSX de src/index.src.html)",
"scripts": {
"build": "node tools/build.mjs",
"check": "node tools/build.mjs --check",
"validate": "node tools/validate.mjs",
"test": "node --test tests/unit.mjs",
"test:browser": "npm i --no-save --no-audit --no-fund playwright@1.56.1 && npx playwright install chromium && node tests/browser.mjs",
"ci": "npm run validate && npm run lint && npm test && npm run check",
"ci:full": "npm run ci && npm run test:browser",
"lint": "node tools/lint.mjs"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-react": "^7.27.1",
"eslint": "^9.39.5",
"eslint-plugin-react-hooks": "^5.2.0"
}
}