-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.83 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
77
78
79
80
81
82
83
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"type": "commonjs",
"scripts": {
"prod": "npx ts-node index.ts",
"dev": "nodemon index.ts",
"test": "jest --detectOpenHandles",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/multer": "^1.4.11",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@eslint/compat": "^1.0.3",
"@eslint/js": "^9.4.0",
"@types/bcrypt": "^5.0.2",
"@types/chai": "^4.3.16",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.9",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"esm": "^3.2.25",
"globals": "^15.3.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.11.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"settings": {},
"ignorePatterns": [
"node_modules"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"roots": [
"<rootDir>",
"<rootDir>/test"
]
}
}