-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 880 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 880 Bytes
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
{
"name": "webstore",
"version": "1.0.0",
"description": "### Project Description: Front-end for Database II Final Project",
"main": "index.js",
"scripts": {
"server": "node server.js",
"start:dev": "nodemon server.js",
"client": "cd Client && npm start",
"start": "concurrently \"npm server\" \"npm run client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prometheus59/webstore.git"
},
"author": "Ryan Karumanchery",
"license": "ISC",
"bugs": {
"url": "https://github.com/Prometheus59/webstore/issues"
},
"homepage": "https://github.com/Prometheus59/webstore#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2"
},
"devDependencies": {
"concurrently": "^6.0.1"
}
}