-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "reactive-stack-js-rest-backend-fastify",
"version": "0.9.1",
"description": "reactive-stack rest backend fastify",
"engines": {
"node": ">=14"
},
"main": "./src/server.js",
"author": "Predrag Stojadinovic <predrag@stojadinovic.net>",
"license": "MIT",
"scripts": {
"start": "nodemon",
"build": "tsc -p tsconfig.json",
"lint": "tslint -p tsconfig.json",
"clean": "tslint --config tslint-imports.json --fix --project .",
"format": "prettier --write \"src/**/*.ts\"",
"prep": "yarn clean && yarn format && yarn lint",
"up": "yarn upgrade-interactive",
"upgrade": "yarn upgrade --latest",
"latest": "yarn upgrade-interactive --latest",
"print": "dir src /s /b > print.txt"
},
"dependencies": {
"@types/lodash": "^4.14.161",
"@types/moment-timezone": "^0.5.30",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"@types/node-cron": "^2.0.3",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.2.7",
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"fastify": "^3.4.1",
"fastify-blipp": "^3.0.0",
"fastify-cors": "4.1.0",
"fastify-helmet": "^5.0.3",
"fastify-jwt": "2.1.3",
"fastify-plugin": "^2.3.4",
"fastify-websocket": "2.0.7",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.20",
"moment": "^2.29.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.10.6",
"node-cron": "^2.0.3",
"reactive-stack-js-backend": "^0.3.0",
"rxjs": "^6.6.3",
"sift": "^13.3.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"nodemon": "^2.0.2",
"prettier": "^2.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.13.7",
"tslint-no-unused-expression-chai": "^0.1.4"
}
}