generated from Borodutch/backend-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.24 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": "knockknock-listener",
"version": "1.0.0",
"description": "Listener for knockknock",
"main": "dist/server.js",
"repository": "https://github.com/Borodutch/knockknock-listener",
"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": {
"@borodutch/knockknock-contract": "^0.0.6",
"dotenv": "^16.4.1",
"envalid": "^8.0.0",
"ethers": "^6.11.1",
"onoff": "^6.0.3"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.5",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.7.2",
"@types/node": "^20.11.16",
"eslint": "^8.56.0",
"module-alias": "^2.2.3",
"prettier": "^3.2.4",
"source-map-support": "^0.5.21",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]"
}