-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "story-backend",
"version": "1.0.0",
"type": "module",
"description": "Backend that serves the APIs needed for the Story Creation and Story Telling Tool",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --exit -r dotenv/config --timeout 15000",
"dev": "nodemon --exec babel-node index.js",
"debug": "DEBUG=express:* nodemon --exec babel-node index.js",
"start": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.410.0",
"@aws-sdk/hash-node": "^3.374.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/s3-request-presigner": "^3.435.0",
"@aws-sdk/url-parser": "^3.374.0",
"core-js": "^3.32.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"http-errors": "^2.0.0",
"mime-types": "^2.1.35",
"mongoose": "^7.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"node-html-parser": "^6.1.10",
"nodemon": "^2.0.16",
"path": "^0.12.7",
"sanitize-html": "^2.11.0",
"sinon-chai": "^3.7.0",
"string-strip-html": "^13.4.3",
"unsplash-js": "^7.0.18"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/node": "^7.22.10",
"@babel/preset-env": "^7.22.14",
"@faker-js/faker": "^8.2.0",
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"fishery": "^2.2.2",
"jsonwebtoken": "^9.0.2",
"mocha": "^10.2.0",
"node-mocks-http": "^1.13.0",
"sinon": "^17.0.0",
"supertest": "^6.3.3"
}
}