-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.2 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
{
"name": "volume-backend",
"version": "1.0.0",
"description": "Backend for Volume app",
"main": "src/app.ts",
"scripts": {
"start": "ts-node src/app.ts",
"dev": "nodemon src/app.ts",
"jest": "jest",
"newman": "node_modules/.bin/newman run tests/Volume\\ Testing.postman_collection.json",
"test": "npm start & wait-on http://localhost:$APP_PORT && npm run newman && kill $(lsof -t -i:$APP_PORT)",
"lint": "eslint src/**/*.ts --fix",
"check-format": "prettier --check \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run check-format"
}
},
"keywords": [],
"author": "Cornell AppDev",
"license": "ISC",
"repository": "https://github.com/cuappdev/volume-backend/",
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@typegoose/typegoose": "^7.4.1",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.2.2",
"@types/multer": "^1.4.9",
"@types/node-cron": "^2.0.3",
"@types/streamifier": "^0.1.1",
"apn": "^2.2.0",
"apollo-graphql": "^0.6.0",
"apollo-server-express": "^2.18.2",
"axios": "^1.5.1",
"bad-words": "^3.0.4",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.0",
"cheerio": "^1.0.0-rc.3",
"class-validator": "^0.12.2",
"express": "^4.17.1",
"firebase-admin": "^9.7.0",
"form-data": "^4.0.0",
"graphql": "^15.5.0",
"jest": "^29.2.2",
"mockdate": "^3.0.2",
"mongodb": "^3.6.2",
"mongoose": "^5.10.9",
"multer": "^1.4.5-lts.1",
"newman": "^5.2.2",
"node-cron": "^2.0.3",
"node-fetch-commonjs": "^3.2.4",
"reflect-metadata": "^0.1.13",
"rss-parser": "^3.9.0",
"streamifier": "^0.1.1",
"ts-jest": "^29.0.3",
"type-graphql": "^1.1.1",
"underscore": "^1.13.6",
"uuid": "^8.3.2",
"wait-on": "^5.2.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.22",
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript-prettier": "^3.1.0",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}