-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 982 Bytes
/
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
{
"name": "exam02",
"version": "1.0.0",
"description": "* start from the up-to-date master branch (`git checkout master; git pull origin master`) * Create a feature branch named 'exam2' (`git checkout -b exam2`) * modify the `questions.md` file to have the answers required * Add any files necessary to create the application below * add, commit, and push the branch to github * Create a PR to merge to master * Be sure to include the reviewer(s) * Due by 11:59pm (PT) Sun Mar 29",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"uuid": "^7.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}