-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 878 Bytes
/
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": "@nouns/api",
"private": true,
"version": "0.1.0",
"description": "nouns backend api",
"author": "Nounders",
"homepage": "https://nouns.wtf",
"license": "GPL-3.0",
"main": "src/index.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node build/index.js",
"prestart": "npm run build",
"build": "tsc -p ."
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/ioredis": "^4.26.4",
"@types/sharp": "^0.28.3",
"nodemon": "^2.0.7"
},
"dependencies": {
"@nouns/contracts": "^0.1.3",
"dotenv": "^8.2.0",
"ethers": "^5.6.8",
"express": "^4.17.1",
"express-validator": "^6.12.0",
"ioredis": "^4.27.6",
"nft.storage": "^2.1.1",
"sharp": "^0.28.3",
"ts-try": "^0.2.0"
}
}