-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 985 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
{
"name": "secure-auth-project",
"version": "1.0.0",
"description": "A project to implement secure web authentication using login credentials, session cookies, validation, jwt, and other security mechanisms\"",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon backend/index.js",
"client": "nodemon frontend/index.js",
"test": "jest --coverage --detectOpenHandles",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"axios": "^1.7.7",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"concurrently": "^9.1.0",
"cypress": "^13.15.1",
"eslint": "^9.14.0",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0"
}
}