-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.98 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@technoparkneskar/sosmart-api",
"version": "0.0.0",
"private": true,
"description": "A REST API for SoSmart app",
"keywords": [
"js",
"typescript",
"fastify"
],
"bugs": {
"url": "https://github.com/technoparkneskar/sosmart-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technoparkneskar/sosmart-api.git"
},
"license": "AGPL-3.0",
"author": "Technopark Neskar <[email protected]>",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "prisma generate && npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "npm run lint -- --fix",
"start": "node --experimental-specifier-resolution=node dist",
"start:dev": "rimraf ./dist && npm run compile && node --experimental-specifier-resolution=node --no-warnings dist"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*",
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "default",
"format": [
"camelCase",
"PascalCase",
"snake_case",
"UPPER_CASE"
],
"leadingUnderscore": "allow",
"trailingUnderscore": "forbid"
},
{
"selector": "variable",
"modifiers": [
"destructured"
],
"format": null
},
{
"selector": "default",
"format": null,
"modifiers": [
"requiresQuotes"
]
}
]
}
},
"dependencies": {
"@fastify/cors": "^8.2.0",
"@fastify/formbody": "^7.0.1",
"@fastify/multipart": "^7.1.0",
"@fastify/rate-limit": "^7.3.0",
"@fastify/secure-session": "^5.2.0",
"@prisma/client": "^4.7.1",
"@sapphire/pieces": "^3.3.4",
"@sapphire/result": "^2.6.0",
"@sapphire/snowflake": "^3.2.2",
"@sapphire/utilities": "^3.6.2",
"@zenshibata/plutus-permission": "^1.1.1",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"fastify": "^4.0.3",
"fastify-socket.io": "^4.0.0",
"firebase-admin": "^11.4.0",
"fluent-json-schema": "^4.0.0",
"got": "^12.1.0",
"is-docker": "^3.0.0",
"otp-generator": "^4.0.0",
"path": "^0.12.7",
"pino-pretty": "^8.0.0",
"redis-modules-sdk": "^1.2.8",
"socket.io": "^4.5.4",
"tslib": "^2.4.0"
},
"devDependencies": {
"@hazmi35/eslint-config": "^8.4.2",
"@types/bcrypt": "^5.0.0",
"@types/ioredis": "^4.28.10",
"@types/node": "^17.0.23",
"@types/otp-generator": "^4.0.0",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"prisma": "^4.7.1",
"rimraf": "^3.0.2",
"types-fastify-socket.io": "^0.0.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=18.12.1",
"npm": ">=7.0.0"
}
}