-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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": "moocs",
"version": "1.0.0",
"description": "online courses",
"main": "server/server.js",
"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 install --prefix client && npm run build --prefix client"
},
"husky":{
"hooks":{
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": "11.1.0"
},
"author": "Ogenrwot Aaron",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^4.1.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.9",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"moment-js": "^1.1.15",
"mongoose": "^5.7.5",
"multer": "^1.4.2",
"multer-gridfs-storage": "^3.3.0",
"nodemailer": "^6.8.0",
"socket.io": "^2.5.0",
"transloadit": "^2.0.8"
},
"devDependencies": {
"husky": "^8.0.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
}
}