-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "reactServerSideRenderingWithNext",
"version": "1.0.0",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "dotenv -- turbo run dev --log-order=stream",
"start": "dotenv -- concurrently \"npm run start:api-server\" \"npm run start:web-application\" ",
"build": "dotenv -- turbo run build",
"lint": "dotenv -- concurrently \"npm run lint:web-application\" ",
"lint2": "dotenv -- turbo run lint",
"generateStaticConfig": "dotenv -- npm --prefix ./apps/api-server run generateStaticConfig",
"delete-cache": "rmdir /s /q node_modules\\.cache\\turbo",
"killNodesWindows": "taskkill /f /im node.exe",
"killNodesUbuntu": "chmod +x additionalTools/kill-node-process.sh",
"cleanup": "node cleanup.js",
"start:api-server": "npm --prefix ./apps/api-server run start",
"start:web-application": "npm --prefix ./apps/web-application run start",
"lint:web-application": "npm --prefix ./apps/web-application run lint",
"setup": "npm --prefix ./apps/custom-scripts run run-script:setup",
"update:packages": "npm update --save/--save-dev -f",
"check-outdate:packages": "npm outdated",
"check-outdate:api-server": "npm --prefix ./apps/api-server outdated",
"check-outdate:web-application": "npm --prefix ./apps/web-application outdated ",
"check-outdate:web-dashboard-app": "npm --prefix ./apps/web-dashboard-app outdated",
"graph": "turbo run build test lint --graph=graph.jpg"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@next/bundle-analyzer": "^14.2.5",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/apicache": "^1.6.6",
"@types/archiver": "^6.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/deep-equal": "^1.0.4",
"@types/dompurify": "^3.0.5",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.0",
"@types/express-xml-bodyparser": "^0.3.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.6",
"@types/langmap": "^0.0.3",
"@types/lodash": "^4.17.7",
"@types/module-alias": "^2.0.4",
"@types/negotiator": "^0.6.3",
"@types/node": "^20.17.6",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.3.0",
"@types/react-fontawesome": "^1.6.8",
"@types/react-redux": "^7.1.33",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/shelljs": "^0.8.15",
"@types/simple-peer": "^9.11.8",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.9",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"jest": "^29.7.0",
"jest-resolve": "^29.7.0",
"jest-watch-typeahead": "^2.2.2 ",
"redux-test-utils": "^1.0.2",
"ts-jest": "^29.2.3",
"ts-lib": "^0.0.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig": "*",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"typescript-eslint": "^8.14.0"
},
"globalDependencies": [
".env"
],
"packageManager": "[email protected]",
"dependencies": {
"@types/axios": "^0.14.4",
"@types/mongoose-lean-virtuals": "^0.5.6",
"eslint-plugin-jsx-a11y": "^6.10.2"
}
}