-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
{
"name": "leader-task",
"version": "0.1.0",
"description": "LeaderTask sales analyse app",
"main": "backend/app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node backend/app.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon backend/app.js",
"client": "npm run start --prefix client",
"client:install": "npm install --prefix client",
"client:build": "npm run build --prefix client",
"install:all": "npm run client:install && npm install",
"docker:build": "docker build --tag leadertask .",
"heroku_container:push": "heroku container:push web --app tranquil-gorge-47875",
"heroku_container:release": "heroku container:release web --app tranquil-gorge-47875",
"heroku:open": "heroku open --app tranquil-gorge-47875"
},
"dependencies": {
"bcryptjs": "2.4.3",
"config": "3.3.6",
"cross-env": "7.0.3",
"date-fns": "2.28.0",
"express": "4.17.1",
"express-validator": "6.12.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"mongoose": "5.13.7",
"path": "0.12.7",
"shortid": "2.2.16"
},
"devDependencies": {
"@types/lodash": "^4.14.179",
"concurrently": "6.2.1",
"nodemon": "2.0.12",
"prettier": "2.5.1"
},
"author": "Artur Ziaev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sergeiwerty/crm-prototype/issues"
},
"homepage": "https://github.com/sergeiwerty/crm-prototype#readme"
}