-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 934 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
{
"name": "merenda-static-server",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"lint": "eslint --ext .ts src/",
"start": "node dist/server.js",
"build": "tsc"
},
"author": "IFPE Open Source",
"license": "MIT",
"dependencies": {
"@paralleldrive/cuid2": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"sharp": "^0.31.3"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^18.14.0",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
}
}