-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·53 lines (53 loc) · 1.52 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
51
52
53
{
"name": "interview-calendar-api",
"version": "1.0.0",
"description": "Interview Calendar API",
"main": "index.js",
"scripts": {
"db": "json-server --watch database/db.json --routes database/routes.json --port 5001",
"start:dev": "PORT=5000 nodemon --watch src --exec babel-node ./src/index.js",
"build": "NODE_ENV=PRODUCTION babel src -d dist --copy-files",
"start:prod": "PORT=5000 NODE_ENV=production pm2 start dist/index.js",
"test": "jest --no-cache --detectOpenHandles --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "https://github.com/rrmarichal/interview-calendar-api.git"
},
"keywords": [
"calendar",
"api",
"nodejs",
"express"
],
"dependencies": {
"@babel/polyfill": "^7.4.3",
"axios": "^0.18.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-validator": "^6.1.1",
"express-winston": "^3.2.1",
"fancy-log": "^1.3.3",
"moment": "^2.24.0",
"nodemon": "^1.18.11",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"babel-jest": "^24.7.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"prettier": "^1.16.4"
}
}