-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "auth_jwt_nodejs",
"version": "1.0.0",
"description": "Authentication & JWT project",
"main": "./src/index.js",
"scripts": {
"devStart": "cross-env NODE_ENV=dev nodemon index.js",
"start": "node index.js",
"testApis": "cross-env NODE_ENV=test mocha 'test/api/' --timeout 10000 --recursive --exit",
"testHelpers": "cross-env NODE_ENV=test mocha 'test/helpers/' --recursive --exit",
"testServices": "cross-env NODE_ENV=test mocha 'test/services/' --timeout 10000 --recursive --exit"
},
"author": "Andoni ALONSO TORT",
"license": "ISC",
"dependencies": {
"@types/chai": "^5.0.1",
"@types/chai-http": "^4.2.4",
"bcrypt": "^5.1.1",
"chai": "^4.5.0",
"chai-http": "^4.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mocha": "^11.1.0",
"mongoose": "^8.9.4"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7"
}
}