-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "my-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon --exec babel-node ./bin/www",
"product": "babel-node ./bin/www",
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && npm run build-server",
"build-server": "babel -d ./build . -s --ignore 'node_modules'",
"migrate": "sequelize db:migrate"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"cron": "^1.7.1",
"dateformat": "^3.0.3",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"nodemon": "^1.19.1",
"pg": "^7.10.0",
"pg-hstore": "^2.3.2",
"sequelize": "^5.12.1",
"sequelize-cli": "^5.5.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3"
}
}