-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.18 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
{
"name": "project2",
"version": "1.0.0",
"description": "* start from the up-to-date main branch (`git checkout main; git pull origin main`) * Create a feature branch named 'project2' (`git checkout -b project2`) * Create the files in this directory to have the require features * Add, commit, and push the branch to github * Create a PR to merge to main * Be sure to include the TA(s) and I as reviewers. * Due by **Wed Nov 15, 11:59pm PT**",
"main": "messages.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack",
"start": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"babel-loader": "^9.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngelLam1130/BackEndAssignment.git"
},
"bugs": {
"url": "https://github.com/AngelLam1130/BackEndAssignment/issues"
},
"homepage": "https://github.com/AngelLam1130/BackEndAssignment#readme"
}