-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "board-games",
"version": "1.0.0",
"description": "CSE341 Team Project",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/index.js",
"start:dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"swagger": "node ./swagger.ts"
},
"repository": "[email protected]:wmezadev/CSE341-TEAM2.git",
"keywords": [
"express",
"typescript",
"mongodb"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wmezadev/CSE341-TEAM2/issues"
},
"homepage": "https://github.com/wmezadev/CSE341-TEAM2#readme",
"dependencies": {
"axios": "^1.2.1",
"body-parser": "^1.20.1",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mongodb": "^4.12.1",
"mongoose": "^6.8.0",
"swagger-ui-express": "^4.6.0",
"tsc": "^2.0.4",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@types/cookie-session": "^2.0.44",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.4",
"@types/express-session": "^1.17.5",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/validatorjs": "^3.15.0",
"concurrently": "^7.5.0",
"createserver": "^1.0.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"mongodb-memory-server": "^8.10.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}