-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "server",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx watch src/index.ts",
"build": "tsc",
"start": "NODE_ENV=production node dist/index.js",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "jest"
},
"dependencies": {
"@apollo/server": "^4.9.5",
"@types/mongoose": "^5.11.96",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dompurify": "^3.2.3",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"graphql": "^16.10.0",
"graphql-compose": "^9.0.11",
"graphql-compose-mongoose": "^10.0.0",
"jsdom": "^25.0.1",
"jsonwebtoken": "^9.0.2",
"markdown-it": "^14.1.0",
"mongoose": "^8.9.3",
"remove-markdown": "^0.6.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"tsx": "^4.7.0",
"typescript": "^5.3.2"
}
}