-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.48 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.48 KB
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
{
"name": "eventup",
"version": "1.0.0",
"description": "EventUp is an open source initiative website where we can choose to attend an event (either physically or virtually) based on our interest and get our attendance marked digitally by scanning a QR code.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"install-backend": "cd backend && npm install",
"install-frontend": "cd frontend && npm install",
"install-concurrently": "npm install -g concurrently",
"install-dep": "npm run install-backend && npm run install-frontend",
"install-all": "npm run install-dep && npm run install-concurrently",
"backend": "nodemon app.js --prefix backend",
"frontend": "npm start --prefix frontend",
"lint": "eslint ./",
"dev": "concurrently \"npm run backend\" \"npm run frontend\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aman-Codes/EventUp.git"
},
"author": "Aman Dwivedi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aman-Codes/EventUp/issues"
},
"homepage": "https://github.com/Aman-Codes/EventUp#readme",
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"dependencies": {
"aos": "^2.3.4"
}
}