-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1021 Bytes
/
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
{
"name": "server",
"version": "0.0.1",
"description": "A new server for this new app we gonna make",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/index.ts",
"build": "tsc --project ./",
"start": "node ./dist/src/index.js"
},
"keywords": [],
"author": "Quinton Dean",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"types-registry": "^0.1.566"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/mysql": "^2.15.19",
"@types/node": "^16.11.7",
"@types/passport": "^1.0.7",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}