-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 853 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
{
"name": "bemyval",
"version": "1.0.0",
"description": "\"minimalistic valentines invitation app\"",
"main": "index.js",
"scripts": {
"test": "find ./tests -name '*_test.js' | xargs mocha --timeout 10000 -R spec",
"start": "node index.js",
"nodemon": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stangatimu/be_my_val.git"
},
"author": "stangatimu",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"helmet": "^3.21.2",
"mongoose": "^5.8.11",
"morgan": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"sinon": "^8.1.1"
}
}