-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 944 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
32
33
34
35
36
37
38
39
40
{
"name": "sleepster",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --ci --verbose --runInBand",
"test:watch": "npm run test -- --watch",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happy-trailblazers/sleepster.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/happy-trailblazers/sleepster/issues"
},
"homepage": "https://github.com/happy-trailblazers/sleepster#readme",
"devDependencies": {
"eslint": "^5.16.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2"
},
"dependencies": {
"dotenv": "^7.0.0",
"figlet": "^1.2.1",
"fuse.js": "^3.4.4",
"inquirer": "^6.3.1",
"mongoose": "^5.5.4",
"ngrok": "^3.1.1"
}
}