-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "sado-ipfs",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rimraf ./dist && tsc",
"build:dev": "tsc --noEmit --strict --pretty",
"start": "NODE_ENV=production npx tsx dist/server.js",
"start:dev": "npm run build:dev && npx tsx watch src/server.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "~4.19.2",
"helmet": "^4.4.1",
"kubo-rpc-client": "^3.0.1",
"mongoose": "^8.2.3",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "5.4.3"
}
}