-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "backend.oneforall",
"version": "1.0.0",
"main": "dist/index.js",
"license": "UNLIECENCED",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nodemon",
"build": "rimraf dist && tsc",
"start": "NODE_ENV=production node .",
"lint": "eslint . --fix"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mysql": "^2.15.19",
"@types/node": "^16.11.7",
"@types/pino": "^6.3.12",
"@types/pino-http": "^5.8.0",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"uuid": "^8.3.2"
},
"dependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-terminator": "^3.0.3",
"joi": "^17.4.2",
"mariadb": "^2.5.5",
"pino": "^7.2.0",
"pino-http": "^6.0.0",
"pino-pretty": "^7.2.0",
"qs": "^6.10.1",
"sequelize": "^6.12.4"
}
}