-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
42
43
44
45
46
47
48
49
50
{
"name": "user_authentication_api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha 'src/tests/**/*.js' --exit",
"lint": "eslint .",
"build": "babel src -d dist",
"start": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/redeks12/user_authentication_api.git"
},
"type": "module",
"author": "nandom",
"license": "ISC",
"bugs": {
"url": "https://github.com/redeks12/user_authentication_api/issues"
},
"homepage": "https://github.com/redeks12/user_authentication_api#readme",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.6.0",
"chai": "^5.1.1",
"eslint": "^9.6.0",
"express": "^4.19.2",
"globals": "^15.8.0",
"mocha": "^10.6.0",
"pg": "^8.12.0",
"supertest": "^7.0.0"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2",
"jwt-token": "^1.0.9",
"morgan": "^1.10.0",
"njwt": "^2.0.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"uuid": "^10.0.0"
}
}