-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
{
"name": "unofficial-auto-chess-api",
"version": "0.0.1",
"description": "unofficial auto chess vng api",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test npx jest",
"dev": "NODE_ENV=development npx nodemon --watch 'index.ts' --watch './src/**/*.ts' --exec 'ts-node' index.ts",
"start": "npx tsc && nodemon dist/index.js",
"build": "npx tsc"
},
"keywords": [
"api",
"auto chess",
"unofficial"
],
"author": "didadadida93",
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"ioredis": "^4.26.0",
"koa": "^2.13.1",
"rate-limiter-flexible": "^2.2.1",
"sequelize": "^6.6.2",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/ioredis": "^4.26.0",
"@types/jest": "^26.0.23",
"@types/koa": "^2.13.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.4",
"@types/node": "^14.14.41",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.3",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}