-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.43 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "express-ts-template",
"version": "1.0.0",
"description": "Simple starter template for ExpressJs and TypeScript based on expressjs/generator and TypeScript-Node-Starter",
"main": "appgit .js",
"scripts": {
"start": "node app.ts",
"build": "npm run build-ts && npm run tslint && npm run serve",
"serve": "node dist/ app.js",
"watch": "nodemon --exec ts-node -- ./src/server.ts",
"watch-node": "nodemon dist/server.js",
"client": "cd client && npm start",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"server": " npm run watch",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.6",
"@react-pdf/renderer": "^1.6.7",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.5",
"@types/google-maps-react": "^2.0.1",
"@types/jquery": "^3.3.31",
"@types/js-cookie": "^2.2.4",
"@types/jsonwebtoken": "^8.3.2",
"@types/mongoose": "^5.5.11",
"@types/react-alert": "^5.2.0",
"@types/react-burger-menu": "^2.2.5",
"@types/react-sidebar": "^3.0.0",
"@types/react-slider": "^0.8.1",
"@types/reactstrap": "^8.0.1",
"@types/validator": "^10.11.2",
"alertifyjs": "^1.12.0",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"class-validator": "^0.9.1",
"cloudinary": "^1.16.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"email-validator": "^2.0.4",
"express": "^4.16.2",
"google-maps-react": "^2.0.2",
"http-errors": "^1.7.1",
"i": "^0.3.6",
"jquery": "^3.4.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mdbreact": "^4.19.1",
"moment": "^2.24.0",
"mongoose": "^5.6.8",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nexmo": "^2.5.1",
"nodemailer": "^6.3.1",
"npm": "^6.12.0",
"pug": "^2.0.0-rc.4",
"react": "^16.9.0",
"react-alert": "^6.0.0",
"react-alert-template-basic": "^1.0.0",
"react-alertify-js": "0.0.1",
"react-burger-menu": "^2.6.11",
"react-confirm-alert": "^2.4.1",
"react-dom": "^16.9.0",
"react-input-slider": "^5.1.3",
"react-rating": "^2.0.0",
"react-ratings-declarative": "^3.4.1",
"react-sidebar": "^3.0.2",
"react-slider": "^1.0.1",
"react-star-rating-input": "^8.0.1",
"react-star-ratings": "^2.3.0",
"reactstrap": "^8.0.1",
"sweetalert": "^2.1.2",
"tsc-watch": "^2.2.1",
"twilio": "^2.11.1",
"typescript-bootstrap": "^1.0.2"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/http-errors": "^1.6.1",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.0",
"concurrently": "^3.6.1",
"nodemon": "^1.19.1",
"tslint": "^5.9.1",
"typescript": "^2.6.2",
"validator": "^11.1.0"
}
}