forked from goffle/pop-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.04 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pop-api",
"version": "1.0.0",
"description": "POP API",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./src/index.js",
"dev:env": "nodemon -r dotenv/config ./src/index.js",
"start": "node ./src/index.js ",
"deploy:prod": "yarn && eb deploy pop-api --profil POP",
"deploy:staging": "yarn && eb deploy pop-api-staging --profil POP",
"test": "jest",
"sitemap": "nodemon -r dotenv/config src/sitemap/sitemap.js",
"export-db-schemas": "node src/export-db-schemas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/pop-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/betagouv/pop-api/issues"
},
"jest": {
"setupTestFrameworkScriptFile": "./src/__tests__/setup/setup.js",
"testPathIgnorePatterns": [
"./src/__tests__/setup/"
]
},
"homepage": "https://github.com/betagouv/pop-api#readme",
"dependencies": {
"@sentry/node": "^4.1.1",
"asyncawait": "^1.0.6",
"aws-sdk": "^2.266.1",
"aws4": "^1.8.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"elasticsearch": "^14.2.2",
"express": "^4.16.4",
"fs": "^0.0.1-security",
"generate-password": "^1.4.0",
"helmet": "^3.12.0",
"http-aws-es": "^6.0.0",
"http-proxy-middleware": "^0.19.0",
"jsonwebtoken": "^8.3.0",
"mongoosastic": "^4.4.1",
"mongoose": "^5.3.8",
"mongoose-paginate": "^5.0.3",
"multer": "^1.3.1",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"request": "^2.87.0",
"x2js": "^3.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"commander": "^2.19.0",
"cross-env": "^5.1.6",
"inquirer": "^6.2.0",
"jest": "^23.6.0",
"listr": "^0.14.2",
"listr-update-renderer": "^0.4.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"rxjs": "^6.3.3",
"sitemap": "^2.1.0",
"supertest": "^3.3.0"
}
}