-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 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
47
48
49
50
{
"name": "reatta-server",
"version": "1.0.5",
"description": "",
"author": "",
"license": "MIT",
"main": "index.js",
"engines": {
"node": "12.x",
"npm": ">= 6.14.4"
},
"scripts": {
"build": "rimraf ./build && tsc",
"start:dev": "nodemon",
"start": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}"
},
"devDependencies": {
"@types/mongoose": "^5.7.24",
"@types/node": "^14.0.11",
"@types/redis": "^2.8.29",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.4",
"onchange": "^6.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@mberrg/regatta": "^0.0.15",
"@types/ws": "^7.2.5",
"fastify": "^2.14.1",
"fastify-caching": "^5.0.0",
"fastify-compress": "^2.0.1",
"fastify-cors": "^3.0.3",
"fastify-etag": "^0.2.0",
"fastify-helmet": "^3.0.2",
"fastify-static": "^2.7.0",
"fastify-websocket": "^1.1.2",
"redis": "^3.1.2"
}
}