-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "first-pass",
"version": "1.0.0",
"description": "First pass at microservices in node",
"main": "index.js",
"scripts": {
"start-dev-server": "nodemon src/bin/start-server.js --color",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"camelcase-keys": "^4.2.0",
"colors": "^1.3.0",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^8.0.0",
"email-templates": "^4.0.1",
"express": "^4.16.3",
"knex": "^0.19.1",
"nodemailer": "^4.6.7",
"nodemailer-pickup-transport": "^0.1.1",
"pg": "^7.4.3",
"pug": "^2.0.3",
"snakecase-keys": "^3.1.0",
"uuid": "^3.3.2",
"validate.js": "^0.12.0"
},
"devDependencies": {
"@eventide/message-db": "^1.1.6",
"blue-tape": "^1.0.0",
"cross-env": "^6.0.3",
"eslint": "^4.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"keygrip": "^1.0.3",
"nodemon": "^1.19.1",
"standard": "^12.0.1",
"supertest": "^4.0.2",
"tape": "^4.8.0"
},
"engines": {
"node": "12.13.x"
}
}