-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
42
43
{
"name": "automation",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx --env-file=.env --watch src/index.ts",
"test": "jest",
"test:e2e": "jest --config jest.config.js"
},
"type": "commonjs",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lit-protocol/auth-helpers": "^7.0.3",
"@lit-protocol/constants": "^7.0.3",
"@lit-protocol/contracts": "^0.0.74",
"@lit-protocol/contracts-sdk": "^7.0.3",
"@lit-protocol/event-listener": "^7.0.3",
"@lit-protocol/lit-auth-client": "^7.0.3",
"@lit-protocol/lit-node-client": "^7.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"helmet": "^8.0.0",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/supertest": "^2.0.16",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}