-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
{
"name": "quadratic-sandwich-api",
"version": "1.0.0",
"main": "server.js",
"repository": "https://github.com/moonshotcollective/quadratic-sandwich-api.git",
"author": "Moonshot Collective @ Gitcoin <[email protected]>",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^17.1.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"ethers": "^5.6.8",
"express": "^4.18.1",
"helmet": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.7.0",
"mongoose": "^6.3.6",
"mongoose-unique-validator": "^3.1.0",
"multer": "^1.4.5-lts.1",
"multer-gridfs-storage": "^5.0.2",
"ts-node": "^10.8.1",
"tsc-alias": "^1.6.9"
},
"scripts": {
"build": "tsc",
"dev": "nodemon server.ts",
"start": "node ./dist/server.js",
"sync": "ts-node ./src/api/v1/utils/syncDB.utils.ts",
"test": "jest --runInBand"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/hapi__joi": "^17.1.8",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/mongodb": "^4.0.7",
"@types/mongodb-memory-server": "^2.3.0",
"@types/mongoose": "^5.11.97",
"@types/mongoose-unique-validator": "^1.0.6",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.41",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.6",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.2",
"mocha": "^10.0.0",
"mongodb-memory-server": "^8.7.2",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.2"
}
}