-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 784 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 784 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
{
"name": "frames-express",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"start": "ts-node src/index.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"express": "^4.17.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.9",
"nodemon": "^2.0.6",
"typescript": "^5.3.3"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "18.x"
}
}