-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "api",
"version": "1.0.0",
"description": "HexLabs backend API system",
"main": "index.ts",
"private": true,
"workspaces": [
"services/auth",
"services/expo",
"services/files",
"services/finance",
"services/hardware",
"services/hexathons",
"services/notifications",
"services/registration",
"services/users",
"common",
"config",
"gateway",
"docs",
"scripts"
],
"license": "MIT",
"scripts": {
"lint": "eslint './**/src/**/*.ts' --fix; prettier . --write",
"start:all": "ts-node index.ts",
"prepare": "husky install",
"setup": "yarn workspace @api/scripts execute src/setup.ts"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@hex-labs/eslint-config": "^1.4.4",
"@hex-labs/prettier-config": "^1.4.4",
"@types/node": "^18.7.16",
"concurrently": "^7.0.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.46.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"husky": ">=6",
"lint-staged": "^12.3.4",
"prettier": "^3.0.1",
"syncpack": "^12.3.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"typescript": "^5.1.6"
},
"prettier": "@hex-labs/prettier-config",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,json,yml,yaml,css,html,md}": "prettier --write"
}
}