-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "service-crm",
"version": "1.0.0",
"description": "CRM for service industry",
"type": "module",
"main": "server.ts",
"scripts": {
"server": "concurrently \"npm run back\" \"npm run bot\"",
"back": "ts-node-esm ./backend/server.ts",
"client": "npm start --prefix ./frontend",
"build:client": "npm run build --prefix ./frontend",
"bot": "node ./tg-bot/index.js",
"start:dev": "concurrently \"npm run server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nadeocfg/service-crm.git"
},
"author": "Khegay Alexey",
"license": "ISC",
"bugs": {
"url": "https://github.com/nadeocfg/service-crm/issues"
},
"homepage": "https://github.com/nadeocfg/service-crm#readme",
"dependencies": {
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.6.0",
"@types/pg": "^8.6.0",
"@types/pg-format": "^1.0.2",
"axios": "^0.27.2",
"colors": "^1.4.0",
"concurrently": "^6.1.0",
"crypto-js": "^4.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"node-telegram-bot-api": "^0.57.0",
"nodemon": "^2.0.7",
"pg": "^8.6.0",
"pg-format": "^1.0.4",
"sequelize": "^6.6.2",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}