-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "scout",
"version": "0.0.7",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src src/server/express.ts",
"build": "tsc",
"prepare": "husky",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.7",
"chalk": "^4",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"express": "^4.18.3",
"openai": "^4.28.4",
"uuid": "^9.0.1",
"viem": "^2.7.19",
"winston": "^3.13.0",
"ws": "^8.17.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/axios": "^0.14.0",
"@types/bun": "^1.1.5",
"@types/chance": "^1.1.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"chance": "^1.1.11",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-ai": "^2.0.1",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.0",
"prettier": "^3.3.2",
"supertest": "^6.3.4",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}