-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "study-room",
"version": "1.0.0",
"description": "A web-app to create study rooms and learn with your friends.",
"main": "./public/js/bundle.js",
"scripts": {
"compileSass": "sass ./sass/main.scss ./public/css/style.css -w",
"watchJs": "parcel watch ./public/js/main.js --dist-dir ./public/js",
"buildJs": "parcel build ./public/js/main.js --dist-dir ./public/js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"author": "Anuj Sharma",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.1",
"multer": "^1.4.5-lts.1",
"pug": "^3.0.2",
"socket.io": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.20",
"open": "^8.4.2",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"sass": "^1.58.0"
}
}