-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.34 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": "grow-crm-backend",
"version": "1.0.0",
"description": "Express|MongoDB backend for Grow CRM",
"main": "./build/src/server.js",
"scripts": {
"start": "yarn build && yarn serve",
"serve": "node build/src/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn run watch-ts\" \"yarn run watch-node\"",
"test": "SET NODE_ENV=test && yarn build && mocha build/tests --timeout 6000 --exit",
"lint": "eslint --ext .ts src && tsc --noEmit",
"build": "yarn clean && yarn build-ts && copyfiles service-account.json build",
"create-env": "printenv > .env",
"build-ts": "tsc",
"clean": "rimraf ./build",
"watch-node": "nodemon -r dotenv/config build/src/server.js --delay 1",
"watch-ts": "tsc -w && copyfiles service-account.json build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/html-to-text": "^9.0.4",
"bcrypt": "^5.1.0",
"core-js": "^3.25.1",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^11.0.1",
"formidable": "^1.2.2",
"he": "^1.2.0",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^8.5.1",
"moment": "^2.30.1",
"mongoose": "^6.0.7",
"node-fetch": "^2.6.7",
"node-mailjet": "^3.3.4",
"tinify": "^1.7.1",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/formidable": "^1.2.4",
"@types/hapi__joi": "^17.1.7",
"@types/he": "^1.1.2",
"@types/mocha": "^9.1.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.9.4",
"@types/node-fetch": "^2.6.1",
"@types/node-mailjet": "^3.3.9",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"concurrently": "^6.2.1",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.12",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^5.3.3"
}
}