-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 939 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
{
"name": "nearcon_hack_api",
"version": "0.0.1",
"description": "cashback application Nearcon22 hack",
"main": "index.js",
"repository": "[email protected]:Nearcon-22-Hack-NearCashback/api.git",
"author": "Den <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"bn.js": "^5.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"near-api-js": "^1.0.0",
"uuid": "^9.0.0"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "yarn build"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.7.16",
"@types/uuid": "^8.3.4",
"concurrently": "^7.4.0",
"nodemon": "^2.0.19",
"typescript": "^4.8.3"
}
}