-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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": "tgr-server",
"version": "1.0.0",
"description": "Backend for Thailand Travel Guide mobile app",
"main": "server.js",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node server/server",
"server": "nodemon server/server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Keremcan Buyuktaskin",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"config": "^3.3.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-validator": "^6.9.2",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.17",
"morgan": "^1.10.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^4.1.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-wesbos": "^1.0.1",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}