-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.46 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.46 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
{
"name": "kurssiesitieto",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"dev": "concurrently \"nodemon backend/index.js\" \"vite ./frontend\"",
"build": "vite build ./frontend --outDir ../dist",
"prod": "NODE_ENV=production node backend/index.js",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 5",
"test": "npm run test:frontend && npm run test:backend",
"test:frontend": "vitest run",
"test:backend": "jest backend/ --config jest.config.backend.js",
"coverage:frontend": "vitest run --coverage",
"coverage:backend": "jest backend/ --coverage --config jest.config.backend.js --collectCoverageFrom=\"./backend/**\"",
"test-coverage": "npm run test:frontend && npx codecov && npm run test:backend && npx codecov"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.7",
"axios": "^1.6.5",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"cypress": "^13.7.0",
"dagre-reactjs": "^1.0.0",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"kurssiesitieto": "file:",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3",
"reactflow": "^11.10.1",
"unfuck-utf8-headers-middleware": "^1.0.1",
"util.promisify": "^1.1.2",
"winston": "^3.12.0",
"winston-console-format": "^1.0.8"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.16.7",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^14.3.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^2.0.4",
"@vitest/ui": "^2.0.4",
"eslint": "^8.55.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.1",
"nodemon": "^3.0.3",
"supertest": "^6.3.4",
"vite": "^5.0.8",
"vitest": "^2.0.4"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}