-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.41 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
52
53
{
"name": "web-scrobbler.github.io",
"version": "2.0.0",
"author": "Web Scrobbler team",
"description": "Web Scrobbler website",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/web-scrobbler/web-scrobbler.github.io"
},
"license": "MIT",
"scripts": {
"dev": "solid-start dev",
"build": "solid-start build",
"start": "solid-start start",
"lint": "eslint . && stylelint \"**/*.scss\"",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"type": "module",
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"esbuild": "^0.20.1",
"eslint": "^8.41.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-solid": "^0.13.1",
"eslint-plugin-tsdoc": "^0.2.17",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"prettier-config-web-scrobbler": "^0.1.0",
"sass": "^1.77.4",
"solid-start-static": "^0.3.10",
"stylelint": "^13.13.1",
"stylelint-config-web-scrobbler": "^0.2.0",
"typescript": "^5.3.3",
"vite": "^4.5.2"
},
"dependencies": {
"@solidjs/meta": "^0.28.7",
"@solidjs/router": "^0.8.4",
"solid-js": "^1.8.15",
"solid-start": "^0.2.26",
"undici": "^5.28.3"
},
"engines": {
"node": ">=18.0.0"
},
"prettier": "prettier-config-web-scrobbler",
"stylelint": {
"extends": "stylelint-config-web-scrobbler"
}
}