-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
{
"imports": {
"#test-utils": "./workshops/test-utils.js"
},
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"workshop": "pnpm exec vite",
"grade": "pnpm exec playwright test --reporter=html",
"gradescope": "PATH=/root/.local/share/pnpm/:$PATH PLAYWRIGHT_JSON_OUTPUT_NAME=./workshops/results.json pnpm exec playwright test --reporter=json",
"zip": "node workshops/create-zips.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Birkbeck2/web-development.git"
},
"keywords": [
"HTML",
"CSS",
"JavaScript"
],
"author": "Joseph Muller",
"license": "AGPL 3.0",
"bugs": {
"url": "https://github.com/Birkbeck2/web-development/issues"
},
"homepage": "https://github.com/Birkbeck2/web-development#readme",
"type": "module",
"devDependencies": {
"prettier": "^3.4.2",
"vitepress": "^1.6.3"
},
"dependencies": {
"autoprefixer": "^10.4.20",
"pnpm": "^9.15.4",
"postcss": "^8.5.1",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.17",
"vite": "^4.5.9",
"vue": "^3.5.13"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"packageManager": "pnpm@8.9.2",
"prettier": {}
}