-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "w3st-io-server",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"description": "",
"main": "server.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"predev": "npm run build",
"dev": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon dist/server.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm install --only=dev --prefix client && npm run build --prefix client"
},
"author": "Aleem Ahmed",
"license": "MIT",
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.35",
"@types/validator": "^13.7.2",
"analytics-node": "^6.0.0",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"concurrently": "^7.2.1",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"geoip-lite": "^1.4.5",
"jsonwebtoken": "^8.5.1",
"mongoose-fuzzy-searching": "^2.0.2",
"nodemon": "^2.0.16",
"rimraf": "^3.0.2",
"typescript": "^4.7.2",
"uuid": "^8.3.2",
"validator": "^13.5.2",
"vue-meta": "^2.4.0",
"vue-youtube-embed": "^2.2.2",
"vuex": "^3.6.2"
}
}