-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
{
"name": "fixmaster",
"version": "1.0.0",
"description": "Web app for appointments in saloons",
"main": "./src/index.tsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dev-server --port 3000 --history-api-fallback",
"build": "cross-env NODE_ENV=production webpack"
},
"author": "ProjectLabs",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/styled-components": "^5.1.29",
"css-loader": "^6.8.1",
"eslint": "^8.52.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/x-date-pickers": "^6.17.0",
"axios": "^1.6.2",
"bootstrap": "^5.3.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"querystring": "^0.2.1",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-calendar": "^4.6.1",
"react-dom": "^18.2.0",
"react-router": "^6.18.0",
"react-router-dom": "^6.17.0",
"styled-components": "^6.1.0"
}
}