-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"name": "basic-bulletin-board-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"backend": "nodemon server/index.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/flylofty/Basic-Bulletin-Board-Project.git"
},
"author": "s.B&&L",
"license": "ISC",
"bugs": {
"url": "https://github.com/flylofty/Basic-Bulletin-Board-Project/issues"
},
"homepage": "https://github.com/flylofty/Basic-Bulletin-Board-Project#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"concurrently": "^6.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mkdir": "0.0.2",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"multer": "^1.4.3",
"mysql": "^2.18.1",
"mysql2": "^2.3.0",
"promise-mysql": "^5.0.3"
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}