-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "claggi-api",
"version": "1.0.0",
"description": "conduit on node",
"main": "app.js",
"scripts": {
"mongo:start": "docker run --name realworld-mongo -p 27017:27017 mongo & sleep 5",
"debug": "node %NODE_DEBUG_OPTION% ./app.js",
"dev": "node ./app.js",
"test": "newman run ./tests/api-tests.postman.json -e ./tests/env-api-tests.postman.json",
"stop": "lsof -ti :3443 | xargs kill",
"restart": "pm2 startOrRestart ecosystem.config.js",
"deploy": "pm2 deploy ecosystem.config.js production",
"mongo:stop": "docker stop realworld-mongo && docker rm realworld-mongo"
},
"license": "ISC",
"dependencies": {
"angular-xeditable": "^0.9.0",
"apac": "^3.0.2",
"body-parser": "1.15.0",
"connect-mongo": "^2.0.1",
"cors": "2.7.1",
"ejs": "2.4.1",
"errorhandler": "1.4.3",
"express": "4.13.4",
"express-jwt": "3.3.0",
"express-session": "1.13.0",
"general-oauth2": "^1.4.3",
"jsonwebtoken": "7.1.9",
"method-override": "2.3.5",
"methods": "1.1.2",
"mongoose": "4.4.10",
"mongoose-unique-validator": "1.0.2",
"morgan": "1.7.0",
"passport": "0.3.2",
"passport-local": "1.0.0",
"passport-oauth2": "^1.4.0",
"passport-oauth2-refresh": "^1.1.0",
"promise-request-retry": "^1.0.1",
"puppeteer": "^1.9.0",
"query-string": "^6.2.0",
"request": "^2.69.0",
"request-promise": "^4.2.2",
"shortid": "^2.2.13",
"simple-oauth2": "^2.2.1",
"slug": "0.9.1",
"underscore": "1.8.3"
},
"devDependencies": {
"http-server": "^0.11.1",
"newman": "^3.8.2",
"nodemon": "^1.11.0",
"pm2": "^3.5.1"
}
}