-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "arthouse-api",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "[email protected]:atilatech/arthouse-server.git",
"author": "ademidun <[email protected]>",
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.0",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"express": "^4.18.1",
"hardhat": "^2.10.0",
"ipfs-http-client": "50.1.2",
"serverless-http": "^3.0.1",
"validator": "^13.7.0"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/handler.js",
"dev": "source .env; export ENVIRONMENT_NAME='dev'; concurrently \"npx tsc --watch\" \"nodemon -q dist/handler.js\""
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@types/validator": "^13.7.3",
"concurrently": "^7.2.2",
"nodemon": "^2.0.16",
"serverless": "^3.19.0",
"serverless-offline": "^8.8.0",
"serverless-plugin-typescript": "^2.1.2",
"serverless-plugin-typescript-express": "^1.0.8",
"typescript": "^4.7.4"
}
}