-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "camera-trap-api-2020",
"version": "0.6.1",
"description": "Camera Trap RESTful API",
"main": "index.js",
"scripts": {
"start": "concurrently --kill-others \"./node_modules/nodemon/bin/nodemon.js src/web-starter.js --watch src\" \"./node_modules/nodemon/bin/nodemon.js src/task-worker.js --watch src\"",
"start_prod": "concurrently --kill-others \"node src/web-starter.js\" \"node src/task-worker.js --watch src\"",
"lint": "eslint --fix src/",
"db:init": "NODE_ENV=test node . -c; NODE_ENV=test node . -i",
"test": "NODE_ENV=test ./node_modules/.bin/mocha test",
"ncu": "./node_modules/npm-check-updates/bin/ncu"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TaiBIF/camera-trap-api-2020.git"
},
"author": "",
"private": true,
"bugs": {
"url": "https://github.com/TaiBIF/camera-trap-api-2020/issues"
},
"homepage": "https://github.com/TaiBIF/camera-trap-api-2020#readme",
"dependencies": {
"acorn": "^6.4.2",
"apicache": "^1.5.3",
"aws-sdk": "^2.771.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"concurrently": "^5.3.0",
"config": "^3.3.2",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cron": "^1.8.2",
"csv-parse": "^4.12.0",
"csv-stringify": "^5.5.1",
"debug": "^4.2.0",
"detect-character-encoding": "^0.8.0",
"dist-exiftool": "^10.53.0",
"express": "^4.17.1",
"express-easy-zip": "^1.1.5",
"express-session": "^1.17.1",
"extend": ">=3.0.2",
"extract-zip": "^2.0.1",
"gm": "^1.23.1",
"got": "^9.6.0",
"handlebars": "^4.7.6",
"iconv-lite": "^0.5.2",
"jszip": "^3.5.0",
"kue": "^0.11.1",
"kue-admin-panel": "^0.1.3",
"left-pad": "^1.3.0",
"lodash": "^4.17.20",
"mime-types": "^2.1.27",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"mongodb": "^3.6.2",
"mongoose": "^5.10.9",
"mongoose-paginate-v2": "^1.3.9",
"multer": "^1.4.1",
"nocache": "^2.1.0",
"node-exiftool": "^2.3.0",
"node-xlsx": "^0.15.0",
"optimist": "^0.6.1",
"p-limit": "^2.3.0",
"query-string": "^6.13.5",
"redis": "^2.8.0",
"string-template": "^1.0.0",
"tmp": "^0.1.0",
"twix": "^1.3.0",
"underscore": "^1.11.0",
"winston": "^3.3.3",
"xmlbuilder": "^13.0.2",
"yargs-parser": "^20.2.1"
},
"devDependencies": {
"@tbif/eslint-config-base": "github:TaiBIF/eslint-base",
"camera-trap-credentials": "github:TaiBIF/camera-trap-credentials#e834c166f9697a2f507c37255dfce1408ce8dd60",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-vue": "^7.0.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^8.1.3",
"mongoose-profiler": "^0.1.0",
"nodemon": "^1.19.4",
"npm-check-updates": "^3.2.2",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}