-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "authorspad",
"version": "0.1.0",
"description": "AuthorsPad is a community of like minded writers to encourage inspiration and innovation by leveraging the modern web",
"private": true,
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel src -d dist",
"db:migrate": "sequelize db:migrate",
"db:refresh": "yarn db:reset && yarn db:migrate",
"db:reset": "sequelize db:migrate:undo:all",
"db:seed": "sequelize db:seed:all ",
"lint": "eslint src",
"sequelize": "sequelize",
"start": "node ./dist/bin/www",
"start:dev": "DEBUG=authorspad:* nodemon -r ./env/load-config.js --exec babel-node src/bin/www",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"nodemonConfig": {
"ext": "js, html, css, json",
"watch": [
"src",
"public"
]
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv-extended": "^2.4.0",
"express": "~4.16.0",
"faker": "^4.1.0",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"npm-run-all": "^4.1.5",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.8.12",
"short-uuid": "^3.1.1"
},
"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",
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.15",
"@types/sequelize": "^4.28.3",
"@types/validator": "^10.11.1",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^2.4.1",
"jest": "^24.8.0",
"jest-watch-master": "^1.0.0",
"lint-staged": "^8.2.1",
"nodemon": "^1.19.1",
"rimraf": "^2.6.3",
"sequelize-cli": "^5.5.0",
"supertest": "^4.0.2"
},
"engines": {
"node": "12.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
}
}