-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "jankclient",
"version": "0.2.0",
"description": "A SpaceBar Client written in TS HTML and CSS to run, clone the repo and do either `npm start` or `bun start` both bun and node are supported, and both should function as expected. To access Jank Client after init simply go to http://localhost:8080/login and login with your username and password.",
"main": ".dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"build": "npx gulp",
"start": "node dist/index.js"
},
"author": "MathMan05",
"license": "GPL-3.0",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.19.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-swc": "^2.2.0",
"rimraf": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@html-eslint/eslint-plugin": "^0.25.0",
"@html-eslint/parser": "^0.27.0",
"@rsbuild/core": "^1.1.4",
"@rsbuild/plugin-node-polyfill": "^1.2.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@stylistic/eslint-plugin-js": "^2.8.0",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.1",
"@types/compression": "^1.7.5",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^8.57.1",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-unicorn": "^55.0.0",
"gulp": "^5.0.0",
"gulp-copy": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-typescript": "^6.0.0-alpha.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.14.0"
}
}