-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "shinkai-slack-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/src/index.js",
"build": "tsc --outDir build",
"dev": "nodemon --watch src --exec ts-node src/index.ts",
"test": "NODE_ENV=test jest test/**/*.test.ts --runInBand --forceExit --testPathIgnorePatterns test/benchmark.test.ts",
"test:benchmark": "NODE_ENV=test jest test/benchmark.test.ts --runInBand --forceExit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.23.9",
"@shinkai_protocol/shinkai-typescript-lib": "^0.0.1-development.5",
"@slack/web-api": "^7.0.1",
"axios": "^1.6.7",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"jest": "^29.7.0",
"node-persist": "^4.0.1",
"supertest": "^6.3.4",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node-persist": "^3.1.8",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
}
}