-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
64
65
66
67
68
69
70
71
72
73
{
"name": "SmartScript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"a-client": "cd admin/client && npm start",
"a-backend": "cd admin/backend && npm start",
"u-client": "cd user/client && npm start",
"u-backend": "cd user/backend && npm start",
"u-build": "cd user/client && npm run build",
"a-build": "cd admin/client && npm run build",
"a-dev": "concurrently \"npm run a-client\" \"npm run a-backend\"",
"u-dev": "concurrently \"npm run u-client\" \"npm run u-backend\"",
"build": "npm run a-build && npm run u-build && (rm -r admin/backend/build || true) && mv admin/client/build admin/backend",
"a-prod": "pm2 start admin/backend/server.js",
"u-prod": "pm2 start user/backend/server.js",
"prod": "pm2 delete all || : && npm run a-prod && npm run u-prod",
"deploy": "cd user/client && firebase deploy",
"build-deploy": "npm run u-build && npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AvielCo/SmartScript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AvielCo/SmartScript/issues"
},
"homepage": "https://github.com/AvielCo/SmartScript#readme",
"dependencies": {
"@ant-design/charts": "^1.1.1",
"@ant-design/icons": "^4.6.2",
"@hapi/joi": "^17.1.1",
"@material-ui/core": "^4.11.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.0",
"antd": "^4.14.1",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"chart.js": "^2.9.4",
"concurrently": "^6.0.0",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.0",
"nodemon": "^2.0.7",
"python-shell": "^2.0.3",
"react": "^17.0.1",
"react-chartjs-2": "^2.5.8",
"react-dom": "^17.0.1",
"react-hash-link": "^1.0.1",
"react-minimal-pie-chart": "^8.2.0",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.0",
"react-scripts": "4.0.3",
"react-scroll": "^1.8.2",
"react-toastify": "^7.0.3",
"redis": "^3.0.2",
"sharp": "^0.28.1",
"web-vitals": "^1.1.0"
}
}