-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.11 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
67
68
69
70
71
72
73
74
{
"name": "lecture-studio-site",
"version": "1.0.0",
"description": "Website for lectureStudio",
"main": "index.js",
"type": "module",
"repository": "https://github.com/lectureStudio/.github.io",
"author": "Alex Andres",
"license": "(MIT AND CC-BY-NC-ND-4.0)",
"scripts": {
"dev": "hugo server --disableFastRender",
"build": "hugo --gc --minify",
"update-downloads": "node scripts/update-downloads.cjs",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
"lint:js": "eslint assets/js/**/*.js scripts/**/*.{js,cjs}",
"lint:css": "stylelint \"assets/css/**/*.css\"",
"lint:html": "htmlhint \"layouts/**/*.html\"",
"lint:fix": "npm run lint:js -- --fix && npm run lint:css -- --fix",
"prepare": "husky",
"test": "jest",
"test:all": "npm run test && npm run test:e2e",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report"
},
"browserslist": [
"last 1 version",
"> 1%",
"maintained node versions",
"not dead"
],
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.x",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"alpinejs": "^3.15.8",
"autoprefixer": "^10.4.24",
"lecture-studio-site": "file:",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@playwright/test": "^1.58.2",
"@stylistic/eslint-plugin-js": "^4.4.1",
"babel-jest": "^30.2.0",
"eslint": "^10.0.0",
"htmlhint": "^1.9.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^24.1.3",
"lint-staged": "^16.2.7",
"stylelint": "^17.3.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1"
},
"lint-staged": {
"assets/js/**/*.js": [
"eslint --fix"
],
"scripts/**/*.js": [
"eslint --fix"
],
"assets/css/**/*.css": [
"stylelint --fix"
],
"layouts/**/*.html": [
"htmlhint"
]
}
}