-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.36 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
{
"name": "OpenHouseCRM",
"version": "0.2.2",
"description": "Open Source Contact Management Platform\u001b[1;5D\u001b[1;5D\u001b[1;5D\u001b[1;5D\u001b[1;5D",
"main": "server.js",
"engines": {
"node": "14.15"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"clientinstall": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"prod": "concurrently \"npm run start\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "LucSedirae",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.2.10",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"chart.js": "^2.9.4",
"config": "^3.3.3",
"cors": "^2.8.5",
"data-grid": "^3.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.8.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.11.15",
"react-chartjs-2": "^2.11.1",
"react-moment": "^1.1.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
}
}