This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
89 lines (89 loc) · 2.29 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
{
"name": "wertik-js",
"version": "3.3.3",
"main": "lib/main.js",
"types": "lib/types.d.ts",
"repository": "https://github.com/Uconnect-Technologies/wertik-js.git",
"keywords": [
"mysql",
"graphql",
"nodejs",
"boilerplate",
"javascript",
"starter-kit",
"api",
"saas",
"saas-boilerplate",
"concepts",
"wertik-js",
"database",
"express-js",
"express-graphql",
"express-graphql-boilerplate"
],
"homepage": "http://www.wapgee.com/wertik-js",
"author": "Ilyas Karim <[email protected]> ",
"license": "MIT",
"scripts": {
"dev": "tsc-watch --onSuccess \"node lib/devServer.js\"",
"build": "yarn prettier && yarn tsc && yarn test",
"prettier": "prettier --write src package.json index.js",
"test": "cross-env TEST_MODE=true jest --runInBand --forceExit --detectOpenHandles"
},
"pre-commit": [
"prettier"
],
"dependencies": {
"apollo-server": "^3.5.0",
"apollo-server-express": "^2.9.4",
"aws-sdk": "^2.820.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bull": "^4.1.1",
"chalk": "^3.0.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dropbox": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.7.2",
"graphql-fields": "^2.0.3",
"graphql-type-json": "^0.3.2",
"handlebars": "^4.5.3",
"lodash": "^4.17.15",
"log-symbols": "^3.0.0",
"moment": "^2.23.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql2": "^1.6.4",
"mysqldump": "^3.2.0",
"node-cron": "^2.0.3",
"nodemailer": ">=6.4.16",
"redis": "^4.0.1",
"sequelize": "^6.3.5",
"socket.io": "^4.1.3",
"tsc-watch": "^5.0.3",
"winston": "^3.1.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@bull-board/express": "^3.8.1",
"@types/body-parser": "^1.16.8",
"@types/bull": "^3.15.7",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/http-codes": "^1.0.1",
"@types/knex": "^0.14.19",
"@types/morgan": "^1.7.35",
"@types/node": "^9.6.7",
"@types/nodemailer": "^4.3.4",
"@types/winston": "^2.4.4",
"concurrently": "^3.6.1",
"dotenv": "^16.0.0",
"jest": "^27.4.7",
"nodemon": "^1.18.9",
"prettier": "^2.3.2",
"tslint": "^5.17.0",
"typescript": "^4.5.4"
}
}