-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "wind",
"version": "1.0.0",
"description": "Simple Url shortener in typescript with express.js",
"main": "src/server.ts",
"scripts": {
"start": "sucrase-node src/server.ts",
"prettier": "prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kuuuuuuuu/Wind.git"
},
"author": {
"name": "Nayuki (Kuuuuuuuu)",
"email": "[email protected]"
},
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^5.0.1",
"helmet": "^7.1.0",
"mysql2": "^3.11.3",
"sucrase": "^3.35.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}