-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 778 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 778 Bytes
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
{
"name": "node-starter",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon --exec babel-node src/app.js",
"dev": "NODE_ENV=development npm run watch babel-node app",
"clean": "rimraf dist",
"watch": "nodemon --config nodemon.json --"
},
"dependencies": {
"@babel/polyfill": "7.11.5",
"cookie-parser": "~1.4.4",
"cors": "2.8.5",
"debug": "~2.6.9",
"dotenv": "8.2.0",
"express": "~4.16.1",
"morgan": "~1.9.1",
"nodemon": "2.0.4",
"pg": "8.3.3",
"rimraf": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/node": "7.10.5",
"@babel/preset-env": "7.11.5",
"eslint": "7.9.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0"
}
}