-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
{
"name": "genuine-article-api",
"version": "1.0.0",
"description": "A RESTful API providing access to information and media about historical clothing as preserved in museums and collections.",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"main": "index.js",
"scripts": {
"start": "node ./build/index.js --trace-warnings",
"test": "cross-env NODE_ENV=testing jest --verbose --i --forceExit --detectOpenHandles",
"test-watch": "cross-env NODE_ENV=testing jest --verbose --i --watchAll"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessicagertig/the-genuine-article-api"
},
"keywords": [],
"author": "Jessica Gertig",
"license": "MIT",
"bugs": {
"url": "https://github.com/jessicagertig/the-genuine-article-api/issues"
},
"homepage": "https://github.com/jessicagertig/the-genuine-article-api#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.363.0",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"file-type": "^15.0.0",
"formidable": "2.1.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"knex": "^2.5.1",
"knex-cleaner": "^1.3.1",
"lodash.isempty": "^4.4.0",
"morgan": "^1.10.0",
"node": "16.20.0",
"node-cron": "^3.0.2",
"pg": "^8.10.0",
"pretty": "^2.0.0",
"sharp": "^0.32.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
}
}