-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 937 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
{
"name": "sample_api",
"version": "1.0.0",
"main": "index.js",
"author": "Muhammet Ozturk <muhammet.ozturk@hacettepe.edu.tr>",
"license": "MIT",
"type": "module",
"scripts": {
"start": "node --experimental-modules src/index.js",
"test": "jest --detectOpenHandles"
},
"engines": {
"node": "12.10.0",
"yarn" : "1.17.3"
},
"dependencies": {
"@hapi/boom": "^7.4.9",
"@hapi/joi": "^16.1.4",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.7.1"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-jest": "^24.9.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
}
}