-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.76 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
{
"name": "nodejsserver",
"version": "1.0.0",
"description": "test-manager-course",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test",
"server": "npx nodemon -r tsconfig-paths/register src/index.ts",
"client": "npm run start --prefix src/client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"start": "cross-env NODE_ENV=production npx node build/index.js",
"build": "tsc-alias -p tsconfig.json"
},
"author": "Jan Święch, Tomasz Napierala, Vitaliy Sklyar",
"license": "ISC",
"devDependencies": {
"@eslint/create-config": "^0.1.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.180",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"tsc": "^2.0.4",
"tsc-alias": "^1.6.5",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/material": "^5.6.4",
"concurrently": "^7.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"react-dom": "^18.1.0",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1"
}
}