-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.11 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
{
"name": "app",
"version": "1.0.0",
"description": "Api",
"main": "index.js",
"scripts": {
"start": "chmod u+x start.sh && ./start.sh",
"build": "babel server --out-dir dist --delete-dir-on-start --source-maps inline --copy-files",
"dev": "nodemon server --exec babel-node --config .nodemonrc.json | pino-pretty",
"dev:debug": "nodemon server --exec babel-node --config .nodemonrc.json --inspect | pino-pretty",
"test": "mocha --require @babel/register --exit",
"test:debug": "mocha --require @babel/register --inspect-brk --exit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"seed": "chmod u+x seed.sh && ./seed.sh"
},
"dependencies": {
"app-root-path": "^3.0.0",
"aws-sdk": "^2.654.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"connect-session-sequelize": "^6.1.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.0",
"finale-rest": "^1.1.1",
"inflection": "^1.12.0",
"lodash": "^4.17.21",
"moment": "^2.26.0",
"morgan": "^1.9.1",
"passport": "^0.4.1",
"passport-auth0": "^1.3.2",
"pg": "^7.18.2",
"pino": "^5.16.0",
"sequelize": "^5.21.5",
"sequelize-cli": "^5.5.1",
"swagger-express-middleware": "^2.0.4",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"colors": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"faker": "^4.1.0",
"mocha": "^7.0.1",
"nodemon": "^2.0.2",
"pino-pretty": "^3.5.0",
"supertest": "^4.0.2"
},
"author": "Carmine DiMascio <[email protected]> (https://github.com/cdimascio)"
}