-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.91 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "the-termagotchi",
"version": "1.0.5",
"description": "A terminal based, tamagotchi inspired, choose your own adventure game.",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "jest --verbose --runInBand --testLocationInResults --setupFiles dotenv/config --passWithNoTests",
"test:watch": "npm run test -- --watch",
"start": "node -r dotenv/config server.js",
"start:watch": "nodemon -r dotenv/config server.js",
"setup-db": "node -r dotenv/config setup-db.js",
"setup-heroku": "heroku run npm run setup-db"
},
"bin": {
"gotchi": "./index.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "Jessica Martin, Jenna Graham, Mariah Schock, Colter Garrison",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^28.1.1",
"@types/pg": "^8.6.5",
"eslint": "^8.17.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"supertest": "^6.2.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"chalk": "^4.1.2",
"chalk-rainbow": "^1.0.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"figlet": "^1.5.2",
"gradient-string": "^2.0.1",
"inquirer": "^8.0.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.3",
"play-sound": "^1.1.5",
"prompt-sync": "^4.2.0",
"yargs-parser": "^21.1.1"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jenna-graham/Termagotchi.git"
},
"bugs": {
"url": "https://github.com/jenna-graham/Termagotchi/issues"
},
"homepage": "https://github.com/jenna-graham/Termagotchi#readme"
}