forked from madfish-solutions/templewallet-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "dapps-list-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/madfish-solutions/dapps-list-backend",
"author": "Inokentii Mazhara <[email protected]>",
"license": "MIT",
"dependencies": {
"@taquito/rpc": "14.0.0",
"@taquito/taquito": "14.0.0",
"@taquito/tzip12": "14.0.0",
"@taquito/tzip16": "14.0.0",
"@taquito/utils": "14.0.0",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^9.0.2",
"express": "^4.17.3",
"firebase-admin": "^10.0.2",
"memoizee": "^0.4.15",
"pino": "^6.11.2",
"pino-http": "^5.5.0",
"pino-pretty": "^4.7.1",
"qs": "^6.10.3",
"semaphore": "^1.1.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development ts-node-dev --files --quiet src/index.ts",
"start-prod": "cross-env NODE_ENV=production node dist/index.js",
"build": "tsc --skipLibCheck",
"ts": "tsc --pretty",
"lint": "eslint ./src --ext .js,.ts",
"lint:fix": "eslint ./src --ext .js,.ts --fix",
"clean": "rimraf dist/"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/memoizee": "^0.4.5",
"@types/node": "^15.3.0",
"@types/pino": "^6.3.8",
"@types/pino-http": "^5.4.1",
"@types/semaphore": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.2.4"
}
}