-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 2.03 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
{
"name": "acsys",
"private": true,
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"client:dev": "vite",
"server:dev": "nodemon -r dotenv/config --ignore ./src/ server/server.js",
"build": "vite build",
"serve": "vite preview",
"docker-build": "docker build . --file Dockerfile --tag acsysio/acsys ",
"docker-run": "docker run -p 8080:8080 acsysio/acsys",
"docker-run-env": "docker run -p 8080:8080 --env-file .env acsysio/acsys",
"lint": "./node_modules/.bin/eslint app.js",
"format": "prettier --write **/*.js **/*.jsx",
"test": "prettier --check . && eslint . && stylelint \"**/*.css\"",
"start": "node -r dotenv/config server/server.js"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@google-cloud/storage": "^6.4.1",
"@mui/icons-material": "^5.10.3",
"@mui/lab": "^5.0.0-alpha.94",
"@mui/material": "^5.10.3",
"@mui/x-date-pickers": "^5.0.0-beta.4",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-fileupload": "^1.1.7-alpha.4",
"express-jwt": "^7.7.5",
"firebase-admin": "11.0.1",
"immutability-helper": "^3.0.1",
"js-cookie": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.35",
"moment": "^2.24.0",
"mysql2": "^2.3.3",
"nodemailer": "^6.7.8",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-quill": "^2.0.0",
"react-router-dom": "^6.3.0",
"sqlite3": "^5.0.11",
"temp": "^0.9.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^2.0.1",
"concurrently": "7.3.0",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.0.5",
"nodemon": "2.0.19",
"vite": "^3.0.9"
}
}