-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.24 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
{
"name": "graphql-ts-helper",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint src --ext ts,tsx",
"build": "rm -rf build && tsc",
"start": "npm run build && ts-node scripts/set-development-env && npm run db:start && sleep 3 && npm run db:migration:up && tsc-watch --onSuccess 'node build'",
"start:production": "node build",
"proxy": "lt -p 5000",
"generate": "ts-node src/generator && npm run lint -- --fix",
"db:migration:create": "npm run build && ts-node scripts/generate-migration empty",
"db:migration:generate": "npm run build && ts-node scripts/generate-migration",
"db:migration:up": "typeorm migration:run",
"db:start": "docker-compose -f docker-compose.yml up -d",
"db:stop": "docker container stop ikatun-template",
"psql": "psql postgresql://user:1234@localhost:5402/ikatun-template"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.0.0",
"@types/app-root-path": "^1.2.4",
"@types/bcryptjs": "^2.4.2",
"@types/config": "0.0.34",
"@types/cryptr": "^4.0.0",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/lodash": "^4.14.108",
"@types/node": "^12.11.6",
"app-root-path": "^2.2.1",
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.1",
"clean-deep": "^3.0.2",
"cookie-parser": "^1.4.3",
"crypto-random-string": "^3.2.0",
"cryptr": "^6.0.2",
"dotenv": "^6.0.0",
"env-var": "^5.1.0",
"eslint": "^6.8.0",
"express": "^4.17.3",
"express-async-wrapper": "^0.1.0",
"graphql": "^14.5.8",
"graphql-list-fields": "^2.0.2",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"pg": "^7.4.3",
"pluralize": "^7.0.0",
"pretty-error": "^2.1.1",
"raven": "^2.6.4",
"readline-promise": "^1.0.4",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.4.1",
"type-graphql": "^0.17.6",
"typeorm": "^0.2.25",
"typeorm-naming-strategies": "^1.1.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"localtunnel": "^2.0.2",
"make-dir": "^1.3.0",
"tsc-watch": "^4.2.3"
}
}