forked from osu-cs290-sp21/final-project-crazy-snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1006 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-crazy-snake",
"version": "1.0.0",
"description": "Crazy Snake Game",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"build": "handlebars views/partials/table.handlebars -f public/tableTemplate.js",
"prestart": "npm run build",
"predev": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osu-cs290-sp21/final-project-crazy-snake.git"
},
"author": "Phillip Dinh <dinhph@oregonstate.edu>, Robert Houeland <houelanr@oregonstate.edu>",
"license": "ISC",
"bugs": {
"url": "https://github.com/osu-cs290-sp21/final-project-crazy-snake/issues"
},
"homepage": "https://github.com/osu-cs290-sp21/final-project-crazy-snake#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"fs": "^0.0.1-security",
"nodemon": "^2.0.7"
}
}