forked from uw-ssec/respondent-driven-sampling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.66 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.66 KB
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
{
"name": "server",
"version": "1.0.0",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node --env-file=.env build/index.js",
"dev": "tsx --env-file=.env --watch src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"clean": "rimraf build",
"lint": "eslint . --ext js,ts",
"lint:fix": "eslint . --ext js,ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@casl/ability": "^6.7.3",
"@casl/mongoose": "^8.0.3",
"bcryptjs": "^3.0.1",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb-memory-server": "^10.1.4",
"mongoose": "^8.10.1",
"nocache": "^4.0.0",
"nodemon": "^3.1.9",
"twilio": "^5.6.1"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.2",
"@jest/globals": "^30.1.2",
"@types/bcryptjs": "^2.4.6",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.7.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"globals": "^16.4.0",
"jest": "^30.0.4",
"prettier": "^3.2.4",
"rimraf": "^6.0.1",
"supertest": "^7.1.3",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
}
}