forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.79 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
54
55
56
57
58
{
"name": "100-days-100-web-projects",
"version": "1.0.0",
"private": true,
"description": "A curated open-source collection of 100+ frontend web projects",
"scripts": {
"generate-previews": "node scripts/generate-previews.js",
"dev": "npx -y serve . -p 3000",
"validate:projects": "node .github/scripts/validate-projects.js",
"validate:projects": "node scripts/validate-projects.js",
"validate:projects-fixture": "node scripts/validate-projects-fixture.js",
"lint": "eslint --no-config-lookup -c eslint.config.js .",
"lint:all": "npx -y htmlhint '**/*.html' --ignore 'node_modules/**,**/node_modules/**'",
"format": "prettier --config .prettierrc --write .",
"docker:build": "docker build -t 100days-web .",
"docker:run": "docker run --rm -p 8080:80 100days-web",
"docker:up": "docker compose up --build -d",
"docker:down": "docker compose down",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/dhairyagothi/100_days_100_web_project.git"
},
"keywords": [
"html",
"css",
"javascript",
"web-projects",
"open-source",
"frontend"
],
"license": "MIT",
"dependencies": {
"dotenv": "^17.4.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"ajv": "^8.17.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.8.3",
"puppeteer": "^25.1.0",
"serve": "^14.2.6",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0"
},
"lint-staged": {
"projects.json": "npm run validate:projects",
"*.html": "npx htmlhint"
}
}