-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "movie-trailers-api",
"version": "1.0.0",
"description": "",
"main": "src/server.js",
"scripts": {
"build": "babel src -d dist --source-maps",
"start": "nodemon --exec babel-node src/server",
"tests": "jest --runInBand ./tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deniztraka/movie-trailers-api.git"
},
"author": "deniz traka",
"license": "ISC",
"bugs": {
"url": "https://github.com/deniztraka/movie-trailers-api/issues"
},
"homepage": "https://github.com/deniztraka/movie-trailers-api#readme",
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@okta/jwt-verifier": "^1.0.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.1.1",
"jest": "^25.5.4",
"moment": "^2.26.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"redis": "^3.0.2",
"request-promise": "^4.2.6",
"superagent": "^6.1.0",
"supertest": "^5.0.0"
},
"devDependencies": {}
}