-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.18 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
{
"name": "scraper-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./build/bin/www",
"start:dev": "nodemon --exec babel-node ./src/bin/www",
"build": "rm -rf ./build && mkdir build && babel --out-dir ./build --source-maps --copy-files ./src",
"test": "mocha --require @babel/register --recursive --timeout 60000 --exit",
"debug": "node --nolazy --inspect-brk=9229 ./src/bin/www"
},
"dependencies": {
"app-root-path": "^3.0.0",
"aws-sdk": "^2.663.0",
"chai": "^4.2.0",
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"helmet": "^4.1.0",
"mocha": "^6.2.3",
"mockgoose": "^8.0.4",
"mongoose": "^5.9.10",
"morgan": "~1.9.1",
"request-promise": "^4.2.5",
"supertest": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"eslint": "^7.3.1",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.3"
}
}