-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "nodemon --delay 1 --exec babel-node ./app.js",
"dev": "nodemon --experimental-modules --delay 1 --exec babel-node ./app.js",
"lint": "eslint .",
"test": "./node_modules/.bin/jest --verbose ./tests"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.1416.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": "^3.5.0",
"sequelize": "^6.32.1",
"socket.io": "^4.7.1",
"swagger-cli": "^4.0.4",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"eslint": "^8.44.0",
"eslint-plugin-jest": "^27.2.2",
"nodemon": "^3.0.1"
}
}