-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.3 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
{
"name": "socnet",
"private": true,
"type": "module",
"scripts": {
"build": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild \"./socnet/static/private/**/*\" --bundle --format=esm --loader:.ttf=file --loader:.woff2=file --outdir=./socnet/static/public/ --platform=browser --splitting --target=chrome63,edge79,safari11.1,firefox67,opera50",
"watch": "npm run esbuild-base -- --watch=forever"
},
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.2",
"autosize": "6.0.1",
"bootstrap": "5.3.8",
"htmx.org": "2.0.8",
"luxon": "3.7.2",
"viewerjs": "1.11.7"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@total-typescript/ts-reset": "0.6.1",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/autosize": "4.0.3",
"@types/eslint-config-prettier": "6.11.3",
"@types/luxon": "3.7.1",
"esbuild": "0.27.4",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-unicorn": "64.0.0",
"prettier": "3.8.1",
"prettier-plugin-packagejson": "3.0.2",
"stylelint": "17.6.0",
"stylelint-config-recess-order": "7.7.0",
"stylelint-config-standard": "40.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.58.0"
}
}