-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 KB
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
54
55
56
57
58
59
60
61
62
{
"name": "servercapstone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf .dist && ./node_modules/.bin/babel --config-file ./babel.config.json . -d .dist/ --ignore 'node_modules/*'",
"start": "nodemon --delay 2 --watch . --exec \"npm run build && node ./.dist\" ",
"eslint:fix-dry-run": "./node_modules/.bin/eslint --fix-dry-run --format=table . | cat",
"migrate:create": "node_modules/db-migrate/bin/db-migrate -m db/migration create --",
"migrate:up": "node_modules/db-migrate/bin/db-migrate -m db/migration up --",
"migrate:reset": "node_modules/db-migrate/bin/db-migrate -m db/migration reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metalvexis/servercapstone.git"
},
"author": "James Saballegue",
"license": "ISC",
"bugs": {
"url": "https://github.com/metalvexis/servercapstone/issues"
},
"homepage": "https://github.com/metalvexis/servercapstone#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"date-fns": "^1.30.1",
"db-migrate": "^0.11.11",
"db-migrate-pg": "^1.2.2",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-list-endpoints": "^4.0.1",
"faker": "^4.1.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.6",
"pg": "^7.18.1",
"postgres-migrations": "^4.0.3",
"winston": "^3.2.1",
"winston-papertrail": "https://github.com/kenperkins/winston-papertrail.git#v2"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/preset-env": "7.3.1",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"sequelize-cli": "^5.5.1",
"standard": "^14.3.1"
}
}