-
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) · 2.04 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.04 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
{
"name": "letshelpit",
"version": "2.0.0",
"description": "Plataforma para conectar pessoas a ONGs - Find NGOs to support",
"main": "public/index.html",
"scripts": {
"start": "npm run build:css && npx http-server public -p 8000 -o",
"dev": "npm run build:css && npx http-server public -p 8000 -o",
"dev:watch": "npm-run-all --parallel dev:css:watch dev:server",
"dev:server": "npx http-server public -p 8000 -o",
"dev:css:watch": "npx tailwindcss -i ./public/css/styles.css -o ./public/css/output.css --watch",
"build:css": "npx tailwindcss -i ./public/css/styles.css -o ./public/css/output.css --minify",
"lint": "npx eslint public/js",
"lint:fix": "npx eslint public/js --fix",
"test": "npx jest",
"test:watch": "npx jest --watch",
"test:coverage": "npx jest --coverage",
"validate": "npm run lint && npm run test",
"screenshots": "node scripts/capture-screenshots.js",
"lighthouse:desktop": "npx lighthouse https://dwildt.github.io/letshelpit/ --output=html --output-path=./lighthouse-report-desktop.html --chrome-flags=\"--headless\" --preset=desktop",
"lighthouse:mobile": "npx lighthouse https://dwildt.github.io/letshelpit/ --output=html --output-path=./lighthouse-report-mobile.html --chrome-flags=\"--headless\" --screenEmulation.mobile=true --formFactor=mobile",
"lighthouse": "npm run lighthouse:desktop && npm run lighthouse:mobile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwildt/letshelpit.git"
},
"keywords": [
"ngo",
"donations",
"volunteering",
"brazil",
"rio-grande-do-sul",
"social-impact"
],
"author": "Daniel Wildt",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dwildt/letshelpit/issues"
},
"homepage": "https://github.com/dwildt/letshelpit#readme",
"devDependencies": {
"eslint": "^8.50.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^21.0.0",
"tailwindcss": "^3.4.18"
},
"engines": {
"node": ">=16.0.0"
}
}