-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "CrimeAlert",
"version": "1.0.0",
"repository": "git@github.com:Cabereca/CrimeAlert.git",
"author": "ndbzika <chakcpps@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/' --exec 'ts-node ./src/server.ts' -e ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "tsc",
"start": "node dist/server.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^9.0.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.1",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"prettier": "^3.0.3",
"redis": "^4.6.11"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.3",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "*"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
}
}