-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 KB
/
package.json
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
{
"name": "vanilla-todo",
"version": "0.1.0",
"description": "A TeuxDeux clone in plain HTML, CSS and JavaScript (no build steps)",
"keywords": [
"vanilla",
"html",
"css",
"javascript"
],
"author": "Morris Brodersen <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/morris/vanilla-todo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/vanilla-todo.git"
},
"bugs": {
"url": "https://github.com/morris/vanilla-todo/issues"
},
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"dev": "s4d public --spa",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"lint-styles": "stylelint public/styles/*",
"test": "playwright test --project Chromium",
"test-coverage": "bash scripts/test-coverage.sh",
"test-e2e": "playwright test",
"test-ui": "playwright test --ui"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.33.0",
"c8": "^10.1.2",
"eslint": "^9.17.0",
"eslint-plugin-compat": "^6.0.2",
"prettier": "^3.1.0",
"s4d": "^0.2.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1"
},
"browserslist": [
"defaults",
"not op_mini all"
]
}