-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "country_io_api",
"version": "0.1.0",
"description": "API to serve country.io on a silver platter",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir dist",
"test": "SET NODE_ENV=testing && jest --runInBand --forceExit --silent",
"dev": "nodemon --exec npm run restart",
"restart": "rimraf dist && npm run build && npm run start",
"start": "node dist/index.js"
},
"keywords": [
"API",
"Universe"
],
"author": "Brook Mezgebu",
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"apollo-server": "^2.9.16",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.8",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"nodemon": "^2.0.2",
"objection": "^2.1.2",
"pg": "^7.17.1",
"validator": "^12.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "7.0.0-bridge.0"
}
}