This repository has been archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "publc-phoenix-server",
"version": "1.0.16",
"private": false,
"description": "",
"author": "OrangeLoops",
"engineStrict": true,
"engines": {
"node": "10.x.x"
},
"devDependencies": {
"@types/base-x": "3.0.0",
"@types/bcrypt": "3.0.0",
"@types/body-parser": "1.17.0",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.0",
"@types/graphql": "14.2.2",
"@types/graphql-iso-date": "3.3.1",
"@types/jest": "24.0.15",
"@types/jsonwebtoken": "8.3.2",
"@types/lodash": "4.14.136",
"@types/moment-timezone": "0.5.12",
"@types/morgan": "1.7.35",
"@types/multer": "1.3.7",
"@types/node": "12.6.2",
"@types/sequelize": "4.28.3",
"@types/uuid": "3.4.5",
"@typescript-eslint/eslint-plugin": "1.12.0",
"@typescript-eslint/parser": "1.12.0",
"dotenv-cli": "2.0.0",
"eslint": "6.0.1",
"eslint-config-prettier": "6.0.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jest": "22.7.2",
"eslint-plugin-prettier": "3.1.0",
"http-server": "0.11.1",
"husky": "3.0.0",
"jest": "24.8.0",
"lint-staged": "9.2.0",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"ts-jest": "24.0.2",
"ts-node-dev": "1.0.0-pre.40",
"tsutils": "3.14.0",
"typescript": "3.5.3"
},
"dependencies": {
"@google-cloud/logging-winston": "1.1.1",
"@google-cloud/storage": "3.0.2",
"@graphql-modules/core": "0.7.7",
"@graphql-modules/utils": "0.4.0",
"apollo-server": "2.6.9",
"apollo-server-express": "2.6.9",
"base-x": "3.0.6",
"bcrypt": "3.0.6",
"body-parser": "1.19.0",
"cors": "2.8.5",
"dotenv": "8.0.0",
"express": "4.17.1",
"graphql": "14.4.2",
"graphql-iso-date": "3.6.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.14",
"moment": "2.24.0",
"moment-timezone": "0.5.26",
"morgan": "1.9.1",
"multer": "1.4.1",
"node-mailjet": "3.3.1",
"pg": "7.11.0",
"reflect-metadata": "0.1.13",
"routing-controllers": "0.7.7",
"sequelize": "5.10.0",
"sequelize-cli": "5.5.0",
"sequelize-typescript": "1.0.0-beta.3",
"tslib": "1.10.0",
"typedi": "0.8.0",
"uuid": "3.3.2",
"winston": "3.2.1"
},
"scripts": {
"start:watch": "NODE_ENV=development ./node_modules/.bin/ts-node-dev --respawn --transpileOnly src/Index",
"start": "node build/src/Index",
"build": "NODE_ENV=production tsc -p tsconfig.release.json",
"test": "jest --coverage",
"db:seed": "sequelize db:seed:all",
"db:seed:undo": "sequelize db:seed:undo:all",
"lint:code": "eslint '*/**/*.{js,ts,tsx}'",
"lint:code:fix": "npm run lint:code -- --fix",
"npm:clean": "rm -rf node_modules package-lock.json && npm cache clean --force && npm rebuild && npm install --loglevel silly",
"new_secret_key": "node -e \"console.log(require('crypto').randomBytes(256).toString('base64'));\""
}
}