-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "solidtv.dev",
"version": "0.0.1",
"description": "SolidTV Website",
"type": "module",
"main": "index.html",
"sideEffects": false,
"scripts": {
"start": "npx live-server ./docs -o --no-css-inject & npm run watch",
"preview": "http-server ./docs",
"build": "tailwindcss -i ./docs/input.css -o ./docs/output.css --minify",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:fix": "npm run lint:fix:prettier && npm run lint:fix:eslint",
"lint:prettier": "prettier --check \"**/*.{ts,js,cjs,md}\"",
"lint:fix:prettier": "prettier --write \"**/*.{ts,js,cjs,md}\"",
"lint:eslint": "eslint .",
"lint:fix:eslint": "eslint --fix .",
"watch": "tailwindcss -i ./docs/input.css -o ./docs/output.css --watch",
"prepare": "husky",
"prepack": "npm run build"
},
"keywords": [
"lightning",
"javascript",
"canvas",
"web",
"tv"
],
"author": "Chris Lorenzo",
"license": "Apache-2.0",
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3"
},
"lint-staged": {
"*.ts": [
"prettier --write"
],
"*.{js,cjs,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solid-tv/solidtv.dev.git"
},
"dependencies": {
"http-server": "^14.1.1"
}
}