-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.93 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
59
60
61
62
63
64
65
66
{
"name": "shakeelmohamed.com",
"version": "5.0.0",
"description": "My personal website",
"private": true,
"scripts": {
"dev": "concurrently -k \"npm:postcss:w\" \"npm:start\"",
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"optimize": "node scripts/optimize.js",
"posttest": "bunx cspell lint 'docs/**/*.html' --no-progress --no-summary --quiet && alex --html --quiet ./docs/ && echo 'posttest: clean'",
"test:words": "bunx cspell lint 'docs/**/*.html' --no-progress --no-summary --quiet && bunx alex --html --quiet ./docs/ && echo 'test:words: clean'",
"test:unit": "bunx playwright test tests/unit --project=chromium",
"test:smoke": "bunx playwright test tests/smoke --project=chromium",
"test:content": "bunx playwright test tests/visual --project=chromium",
"test:content:mobile": "bunx playwright test tests/visual --project=\"Mobile Chrome\"",
"test:update": "bunx playwright test tests/visual --project=chromium --update-snapshots",
"test:update:mobile": "bunx playwright test tests/visual --project=\"Mobile Chrome\" --update-snapshots",
"test:compare": "bunx playwright test tests/live-comparison.spec.js --project=chromium --reporter=line,html || true",
"test:compare:mobile": "bunx playwright test tests/live-comparison.spec.js --project=\"Mobile Chrome\"",
"test": "bun run build && bun run test:unit && bun run test:smoke && bun run test:content && bun run test:compare",
"postcss": "postcss src/styles.css -o docs/dist/styles.css",
"postcss:w": "postcss src/styles.css -o docs/dist/styles.css --watch --poll",
"clean": "rimraf docs/ .cache/ test-results/",
"pretest": "bun run lint:css && bun run lint:pug && bun run lint:js",
"lint:css": "stylelint src/**/.css src/*.css",
"lint:pug": "node scripts/lint-pug.js",
"lint:js": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shakeelmohamed/shakeelmohamed.github.io.git"
},
"author": "Shakeel Mohamed<iam@shakeel.xyz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shakeelmohamed/shakeelmohamed.github.io/issues"
},
"homepage": "https://github.com/shakeelmohamed/shakeelmohamed.github.io#readme",
"dependencies": {
"bun": "^1.3.10"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^6.0.4",
"@playwright/test": "^1.58.2",
"alex": "^11.0.1",
"autoprefixer": "^10.4.27",
"concurrently": "^9.2.1",
"cspell": "^9.7.0",
"cssnano": "^7.1.3",
"eslint": "^10.0.3",
"eslint-plugin-playwright": "^2.10.0",
"git-date-extractor": "^4.0.1",
"jstransformer-markdown-it": "^3.0.0",
"markdown-it": "^14.1.1",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"rimraf": "^6.1.3",
"stylelint": "^17.4.0",
"stylelint-config-recess-order": "^7.6.1",
"stylelint-config-standard": "^40.0.0"
}
}