-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 914 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
27
28
29
30
31
{
"name": "final-project-squirtle-squad",
"version": "1.0.0",
"description": "Final Project",
"main": "server.js",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"handlebars": "^4.7.7"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "handlebars views/partials/pokemonInfoCard.handlebars -f public/createCardTemplate.js",
"prestart": "npm run build",
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osu-cs290-sp21/final-project-squirtle-squad.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/osu-cs290-sp21/final-project-squirtle-squad/issues"
},
"homepage": "https://github.com/osu-cs290-sp21/final-project-squirtle-squad#readme"
}