-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·77 lines (76 loc) · 2.31 KB
/
package.json
File metadata and controls
executable file
·77 lines (76 loc) · 2.31 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "express-backend",
"version": "1.0.0",
"description": "Backend for personality test",
"main": "src/dist/server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "nodemon ./src/dist/src/server.js",
"server": "nodemon ./src/dist/src/server.js",
"build": "rimraf dist && tsc",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint --fix . --ext .ts,.tsx",
"test": "NODE_ENV=test jest"
},
"author": "Ayodele Falowo",
"license": "MIT",
"dependencies": {
"@jest/globals": "^29.7.0",
"@types/mongoose": "^5.11.97",
"ansi-regex": "^6.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"config": "3.3.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"lint": "^0.8.19",
"mongodb": "^4.1.3",
"mongoose": "^8.2.0",
"morgan": "^1.10.0",
"serverless-http": "^3.2.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"winston": "^3.9.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"nodemon": "^2.0.22",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}