forked from se701team3/Forgettable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "forgettable.backend",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --ext .ts . \"--fix\"",
"test": "jest --watchAll --coverage --verbose --silent --runInBand"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@types/algoliasearch": "^4.0.0",
"algoliasearch": "^4.13.0",
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"firebase-admin": "^10.0.2",
"http-status": "^1.5.0",
"mongodb-memory-server": "^8.4.0",
"mongoose": "^6.2.4",
"mongoose-algolia": "^1.10.1",
"supertest": "^6.2.2"
}
}