-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "code_challenge",
"repository": "https://github.com/iborba/code_challenge",
"version": "1.0.0",
"description": "API to get business reviews from Yelp API",
"main": "build/src/server.js",
"types": "build/src/apps.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [
"Alpharetta",
"israel.borba",
"adp",
"express",
"yelp"
],
"scripts": {
"compile": "tsc -p .",
"dev": "nodemon",
"test": "NODE_ENV=test jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "NODE_ENV=test jest --collectCoverage=true",
"start": "node build/src/server.js",
"docker": "docker build -t israelborba/code_challenge:v1 . && docker push israelborba/code_challenge:v1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jest": "^25.1.3",
"@types/node": "^10.0.3",
"coveralls": "^3.0.9",
"gts": "^1.1.2",
"jest": "^25.1.0",
"jest-express": "^1.11.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"typescript": "~3.7.0"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0"
}
}