-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·82 lines (81 loc) · 3.01 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
{
"name": "Typescript-Express-Mysql-Boilerplate",
"version": "2.0.1",
"description": "Boilerplate for Node-Express with sequelize ORM",
"main": "build/index.js",
"type": "module",
"scripts": {
"start:dev": "concurrently \"npm run watch-compile\" \"npm run watch-dev\"",
"watch-compile": "swc src -w --out-dir build --source-maps inline",
"watch-dev": "nodemon --watch \"build/**/*\" -e js --exec \"node -r source-map-support/register -r tsconfig-paths/register ./build/index.js\"",
"start": "node -r source-map-support/register -r tsconfig-paths/register ./build/index.js",
"build": "npm run check && rimraf ./build && swc ./src -d build --source-maps",
"check": "tsc --noEmit",
"test:mocha": "mocha './build/**/*.spec.js' --require ts-node/register",
"test:watch": "nodemon --watch ./build --exec npm run test:mocha",
"test": "npm run build && npm run test:mocha",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"author": "Kazi Naimul Hoque (Aoyan)",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/gapi": "^0.0.42",
"@types/lodash": "^4.14.182",
"@types/node-cron": "^3.0.1",
"@types/passport-jwt": "^3.0.7",
"@types/sinon": "^10.0.13",
"concurrently": "^8.2.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-webpack-plugin": "^3.1.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.0",
"prettier-eslint": "^13.0.0",
"ts-sinon": "^2.0.2"
},
"dependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.74",
"@types/mocha": "^10.0.1",
"@types/socket.io": "^3.0.2",
"axios": "^0.26.1",
"bcrypt": "^5.1.0",
"chai": "^4.3.7",
"chokidar": "^3.5.3",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.4",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"form-data": "^4.0.0",
"googleapis": "^100.0.0",
"helmet": "^6.0.1",
"http-status": "^1.5.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mocha": "^10.1.0",
"mysql2": "^2.3.3",
"node-cron": "^3.0.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"redis": "^4.3.1",
"rimraf": "^3.0.2",
"sequelize": "^6.18.0",
"sequelize-cli": "^6.4.1",
"source-map-support": "^0.5.21",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.6.3",
"uuidv4": "^6.2.13",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
}
}