-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 987 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
{
"name": "mta-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "tsc --project ./",
"start": "node ./out/src/index.js",
"dev": "ts-node-dev src/index.ts --transpile-only"
},
"keywords": [],
"author": "iDannz",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.2",
"memory-cache": "^0.2.0",
"promise-timeout": "^1.3.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/promise-timeout": "^1.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/memory-cache": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"ts-node-dev": "^2.0.0"
}
}