-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 860 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 860 Bytes
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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"build": "rimraf ./dist && tsc",
"dev:watch": "tsc -w",
"start": "yarn run build && node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@permaweb/aoconnect": "^0.0.53",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"node-cron": "^3.0.3",
"path": "^0.12.7"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.16",
"@types/node-cron": "^3.0.11",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"tsc": "^2.0.4",
"typescript": "^5.3.3"
}
}