-
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) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 974 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": "manusilva",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "node --test pwa/tests/*.test.mjs",
"import:catalogo": "python scripts/import-listagem-produtos.py",
"sync:rh-config": "node pwa/scripts/sync-rh-admin-config.mjs",
"sync:api-config": "node pwa/scripts/write-api-runtime-config.mjs",
"icons": "node scripts/generate-pwa-icons.mjs",
"lint": "eslint pwa/js pwa/api",
"format": "prettier --write \"pwa/js/**/*.js\" \"pwa/api/**/*.js\" \"pwa/css/**/*.css\"",
"format:check": "prettier --check \"pwa/js/**/*.js\" \"pwa/api/**/*.js\" \"pwa/css/**/*.css\"",
"css:split": "python scripts/split-app-css.py",
"css:move-tech": "python scripts/move-tech-css-from-admin.py"
},
"dependencies": {
"jszip": "^3.10.1",
"nodemailer": "^7.0.13"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "^3.6.2"
}
}