-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "backend",
"module": "index.ts",
"dependencies": {
"cors": "^2.8.5",
"dayjs": "^1.11.9",
"express": "^4.18.2",
"express-useragent": "^1.0.15",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"mongodb": "^6.1.0",
"mongoose": "^7.5.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-useragent": "^1.0.2",
"@types/lodash": "^4.14.198",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"bun-types": "latest",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"lint-staged": "^14.0.1"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"build:prod": "bun build --target=bun src/index.ts --outdir ./build --minify"
},
"type": "module"
}