-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "askobar-token-supply",
"version": "1.0.0",
"description": "REST API to retrieve Askobar's Token circulating supply",
"main": "src/app.js",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"generate-abis": "npx buidler compile",
"postinstall": "npm run generate-abis",
"build": "tsc -p . && copyfiles ./artifacts/**/*.json dist",
"prestart": "npm run build",
"test": "jest"
},
"author": "dOrg",
"license": "ISC",
"dependencies": {
"@nomiclabs/buidler": "^1.4.3",
"askonetwork-contracts-fork": "^0.0.1",
"copyfiles": "^2.3.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.7",
"express": "^4.17.1",
"typescript": "^3.9.7",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27"
},
"devDependencies": {
"@types/supertest": "^2.0.10",
"ganache-cli": "^6.9.1",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2"
}
}