-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
63
64
65
66
{
"name": "4kish-back",
"version": "1.0.0",
"description": "4 Kish backend",
"main": "index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"private": true,
"scripts": {
"build": "rm -rf ./dist && tsc --build ./tsconfig.json",
"start": "TS_NODE_FILES=true node --inspect=5858 -r ts-node/register ./src/index.ts",
"start:watch": "nodemon",
"build-tsc": "tsc",
"start-ts": "ts-node ./src/example/index.ts"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/bent": "^7.0.2",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/http-errors": "^1.6.3",
"@types/node": "^12.12.42",
"@types/pg": "^7.14.3",
"@types/pg-format": "^1.0.0",
"@types/ws": "^7.2.4",
"nodemon": "^2.0.4",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"dependencies": {
"bent": "^7.1.0",
"change-case": "^4.1.1",
"debug": "^4.1.0",
"dotenv": "^8.2.0",
"fastify": "^2.11.0",
"fastify-cors": "^3.0.3",
"fastify-file-upload": "^2.0.1",
"fastify-jwt": "^1.4.0",
"fastify-plugin": "^1.6.0",
"fastify-websocket": "^1.1.0",
"pg": "^8.2.1",
"pg-format": "^1.0.4",
"sql-bricks-postgres": "^0.5.0"
},
"author": "Kayvan Arianpour",
"license": "ISC"
}