-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "portfolio-react",
"version": "0.2.0",
"private": true,
"author": "Artur Szwagrzak",
"scripts": {
"dev": "react-scripts start",
"server:dev": "cross-env PORT=3002 nodemon backend/app.js",
"start": "react-scripts start",
"build": "react-scripts build",
"server:start": "cross-env PORT=3002 node backend/app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"test": "react-scripts test --watchAll=false --passWithNoTests",
"test:coverage": "react-scripts test --coverage --watchAll=false --passWithNoTests",
"build:css": "tailwindcss -i ./src/app/styles/globals.scss -o ./dist/styles.css --watch",
"build:css:prod": "tailwindcss -i ./src/app/styles/globals.scss -o ./dist/styles.css",
"sync": "cross-env PORT=3002 node backend/sync.js",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,scss,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,scss,css,md}\"",
"db:start": "docker-compose -f docker-compose.dev.yml up -d",
"db:stop": "docker-compose -f docker-compose.dev.yml down",
"db:reset": "docker-compose -f docker-compose.dev.yml down -v && docker-compose -f docker-compose.dev.yml up -d",
"dev:full": "npm run db:start && concurrently \"npm run server:dev\" \"cross-env PORT=3000 npm start\"",
"dev:backend": "npm run db:start && npm run server:dev",
"dev:frontend": "npm start"
},
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.116",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"eslint": "^8.57.1",
"express": "^4.21.1",
"express-rate-limit": "^8.0.1",
"mysql2": "3.11.3",
"nodemailer": "^7.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "5.3.0",
"react-router-dom": "^6.27.0",
"react-scripts": "5.0.1",
"sass": "^1.80.5",
"sequelize": "6.37.5",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.27.1",
"@types/node": "22",
"@types/react": "18",
"@types/react-dom": "18",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cross-env": "^10.0.0",
"eslint-config-react-app": "^7.0.1",
"nodemon": "^3.1.7",
"postcss": "^8.4.47",
"prettier": "^3.4.1",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}