-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "deep-waifu-server-astar",
"version": "1.0.0",
"description": "Deep Waifu backend",
"main": "dist/index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"eslint": "eslint src/index.ts",
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "ts-node ./src/index.ts",
"start": "node dist/index.js",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@pinata/sdk": "^1.1.23",
"axios": "^0.21.1",
"bn.js": "^5.2.0",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ethers": "^5.5.1",
"express": "4.17.1",
"express-fileupload": "^1.2.1",
"express-form-data": "^2.0.16",
"express-http-proxy": "^1.6.2",
"express-rate-limit": "^5.3.0",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"nodemon": "2.0.6",
"queue": "^6.0.2",
"stripe": "^8.176.0",
"swagger-ui-express": "4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/compression": "1.7.0",
"@types/cors": "^2.8.9",
"@types/express": "4.17.9",
"@types/express-fileupload": "^1.1.7",
"@types/express-form-data": "^2.0.1",
"@types/express-http-proxy": "^1.6.1",
"@types/express-rate-limit": "^5.1.3",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.19",
"@types/lodash": "^4.14.168",
"@types/memory-cache": "^0.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "14.14.14",
"@types/node-fetch": "^2.5.12",
"@types/prompt-sync": "^4.1.1",
"@types/supertest": "2.0.10",
"@types/swagger-ui-express": "4.1.2",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"cross-env": "^7.0.3",
"eslint": "7.16.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"jest-express": "1.12.0",
"prompt-sync": "^4.2.0",
"rimraf": "^3.0.2",
"supertest": "6.0.1",
"ts-jest": "26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}