This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "mobile-fight-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "DEBUG=mobileFight:* nodemon --exec node dist/index.js",
"tsc:watch": "tsc -w",
"migrate": "npx sequelize-cli db:migrate",
"rollback": "npx sequelize-cli db:migrate:undo",
"seed": "npx sequelize-cli seed:generate",
"seed:run": "npx sequelize-cli db:seed:all",
"seed:down:all": "npx sequelize-cli db:seed:undo:all",
"seed:down:last": "npx sequelize-cli db:seed:undo",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie": "^0.4.1",
"debug": "^4.1.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"koa-websocket": "^6.0.0",
"koa2-cors": "^2.0.6",
"koa2-formidable": "^1.0.2",
"ramda": "^0.27.1",
"sequelize": "^5.21.3",
"sqlite3": "^4.1.1",
"typescript": "^4.1.2",
"ws": "^7.4.2"
},
"devDependencies": {
"@atomix/eslint-config": "^8.0.0",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/cookie": "^0.4.0",
"@types/debug": "^4.1.5",
"@types/koa": "^2.11.6",
"@types/koa-route": "^3.2.4",
"@types/koa-websocket": "^5.0.5",
"@types/ramda": "^0.27.34",
"@types/sequelize": "^4.28.9",
"@types/ws": "^7.4.0",
"concurrently": "^5.0.2",
"customize-cra": "^0.7.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-unicorn": "^7.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.18.2",
"sequelize-cli": "^5.5.1"
}
}