-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "node-service-based-template",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev-ts": "yarn prettier-ts && nodemon src-typescript/server.ts --config nodemon-ts.json",
"dev-js": "yarn prettier-js && nodemon src-javascript/server.js --config nodemon-js.json",
"build": "tsc && copyfiles -u 1 \"src-typescript/**/*.{css,html,ico,png,svg}\" dist/src/",
"start-ts": "ts-node src-typescript/server.ts",
"start-js": "node src-javascript/server.js",
"preview": "node dist/server.js",
"prettier-ts": "prettier --write \"src-typescript/**/*.ts\"",
"prettier-js": "prettier --write \"src-javascript/**/*.js\"",
"lint": "eslint"
},
"author": "Ijlal Ahmad",
"license": "ISC",
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"joi": "^17.11.0",
"joi-to-swagger": "^6.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"process": "^0.11.10",
"reflect-metadata": "^0.2.1",
"sequelize": "^6.35.2",
"sequelize-typescript": "^2.1.6",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^22.7.5",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"copyfiles": "^2.4.1",
"eslint": "9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.11.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}