-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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": "stew-auth",
"version": "1.0.0",
"description": "A microservice to be used as an authentication service for my future applications",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=dev node src/server.js",
"dev": "cross-env NODE_ENV=dev nodemon src/server.js",
"test": "cross-env NODE_ENV=test npx jest --clearCache && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/louissullivan4/stew-auth.git"
},
"keywords": [
"authentication",
"microservice",
"express",
"bcrypt"
],
"author": "Louis Sullivan",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/louissullivan4/stew-auth/issues"
},
"homepage": "https://github.com/louissullivan4/stew-auth#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"punycode": "^2.3.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"chai": "^5.0.0",
"chai-http": "^4.4.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"node-mocks-http": "^1.14.0",
"supertest": "^6.3.3"
}
}