-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 939 Bytes
/
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
{
"name": "2004scape-website",
"version": "1.0.0",
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "tsx --watch src/app.ts",
"quickstart": "tsx src/app.ts",
"start": "npm i && tsx src/app.ts"
},
"dependencies": {
"@fastify/autoload": "6.0.3",
"@fastify/cookie": "11.0.2",
"@fastify/formbody": "8.0.2",
"@fastify/multipart": "9.0.3",
"@fastify/session": "11.1.0",
"@fastify/static": "8.0.4",
"@fastify/view": "10.0.2",
"bcrypt": "5.1.1",
"better-sqlite3": "^11.8.1",
"dotenv": "16.4.7",
"ejs": "3.1.10",
"fastify": "5.2.1",
"kysely": "0.27.5",
"mysql2": "3.12.0",
"obscenity": "^0.4.3"
},
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/better-sqlite3": "^7.6.12",
"@types/ejs": "3.1.5",
"@types/eslint": "9.6.1",
"@types/node": "22.10.10",
"tsx": "4.19.2",
"typescript": "5.7.3"
}
}