-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "jamcookbackend",
"version": "1.0.0",
"description": "Backend de JamCook",
"main": "build/server.js",
"scripts": {
"start": "node build/server.js",
"start:dev": "nodemon",
"lint": "eslint . --ext .ts",
"postinstall": "rimraf ./build && npm run tsc",
"tsc": "tsc"
},
"author": "JamAvo",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.31",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"rimraf": "^3.0.2",
"sequelize": "^6.5.0"
}
}