-
Jonny Ngo Luong authoredJonny Ngo Luong authored
This project manages its dependencies using npm.
Learn more
package.json 912 B
{
"name": "server",
"version": "1.0.0",
"description": "REST API with MySQL",
"main": "src/index.ts",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.9",
"@types/express": "^4.17.11",
"@types/express-jwt": "^6.0.1",
"@types/jest": "^26.0.20",
"@types/mysql": "^2.15.17",
"@types/supertest": "^2.0.10",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"supertest": "^6.1.3",
"ts-jest": "^26.5.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}