-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.18 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
67
68
69
70
71
72
73
{
"name": "trollo-backend",
"version": "1.0.0",
"description": "Backend for the Trello clone - Trollo, a maturita project",
"main": "src/index.ts",
"repository": "https://github.com/sproott/trollo-backend",
"author": "sproott <david.hrabe12@seznam.cz>",
"license": "MIT",
"private": true,
"engines": {
"node": "15.x"
},
"scripts": {
"dev": "set NODE_ENV=development & tsnd --deps --respawn ./src/index.ts",
"migrate": "knex migrate:latest && knex seed:run",
"start": "cd build && node ./src/index.js ",
"build": "tsc"
},
"dependencies": {
"apollo-server-express": "^2.21.1",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.1",
"connect-session-knex": "^2.0.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"dayjs": "^1.10.4",
"death": "^1.1.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fast-json-stable-stringify": "^2.1.0",
"graphql": "^15.5.0",
"graphql-query-complexity": "^0.7.2",
"graphql-tools": "^7.0.4",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.19",
"objection": "^2.2.14",
"passport": "^0.4.1",
"passport-strategy": "^1.0.0",
"pg": "^8.5.1",
"ramda": "^0.27.1",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typescript-ioc": "^3.2.2",
"uuid": "^8.3.2",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.10",
"@types/death": "^1.1.1",
"@types/express-session": "^1.17.3",
"@types/fast-json-stable-stringify": "^2.0.0",
"@types/isomorphic-form-data": "^2.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.32",
"@types/passport": "^1.0.6",
"@types/passport-strategy": "^0.2.35",
"@types/pg": "^7.14.11",
"@types/ramda": "^0.27.38",
"@types/string": "^0.0.30",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-unused-imports": "^1.1.0",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}