-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "quiz-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install-packages": "npm install && npm install --prefix frontend",
"server": "nodemon server/index",
"client": "npm start --prefix frontend ",
"start": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node server/seeder",
"data:destroy": "node server/seeder -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parveshbarak/Quiz-App.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/parveshbarak/Quiz-App/issues"
},
"homepage": "https://github.com/parveshbarak/Quiz-App#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.4",
"react-copy-to-clipboard": "^5.1.0"
},
"devDependencies": {
"concurrently": "^7.2.2",
"nodemon": "^2.0.19"
}
}