-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "fe-final-backend",
"version": "1.0.0",
"description": "Back End code for final projects of Front End groups\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[DDANIT\u001b[3~ Front End groups",
"main": "server.js",
"engines": {
"node": "16.x"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"server": "nodemon server.js",
"start": "node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"seed": "node seeds/seed.js"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/dan-it/js-course-development/fe-final-backend.git"
},
"author": "Saribeg",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cli": "^1.0.1",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.6.10",
"mongoose-seed": "^0.6.0",
"multer": "^1.4.2",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react-date-countdown-timer": "^1.1.0",
"react-router": "^6.0.2",
"styled-reset": "^4.3.4",
"unique-random": "^2.1.0",
"validator": "^11.1.0"
},
"devDependencies": {
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"nodemon": "^1.19.1",
"pretty-quick": "^3.1.1"
}
}