generated from Borodutch/backend-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "farcaster-minimalist",
"version": "1.0.0",
"description": "What happened on Farcaster, tldr",
"main": "dist/server.js",
"repository": "https://github.com/Borodutch/farcaster-minimalist",
"author": "backmeupplz <[email protected]>",
"prettier": "@big-whale-labs/prettier-config",
"license": "MIT",
"scripts": {
"distribute": "yarn build && node dist/server.js",
"start": "tsc-watch --skipLibCheck --onSuccess 'node dist/server.js'",
"build": "tsc --skipLibCheck",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 ./src/",
"lint-fix": "yarn eslint ./src/ --fix"
},
"dependencies": {
"dotenv": "^16.4.5",
"envalid": "^8.0.0"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.6",
"@big-whale-labs/prettier-config": "^1.1.3",
"@typegoose/typegoose": "^12.4.0",
"@types/node": "^20.12.8",
"eslint": "^9.1.1",
"module-alias": "^2.2.3",
"prettier": "^3.2.5",
"tsc-watch": "^6.2.0",
"typescript": "^5.4.5"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}