forked from Codehagen/Badget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 954 Bytes
/
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
{
"name": "@projectx/connector-core",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": "./src/index.ts"
},
"typesVersions": {
"*": {
"*": [
"src/*"
]
}
},
"license": "MIT",
"scripts": {
"clean": "rm -rf .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint . --no-error-on-unmatched-pattern",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@projectx/db": "workspace:^0.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@projectx/eslint-config": "workspace:^0.2.0",
"@projectx/prettier-config": "workspace:^0.1.0",
"@projectx/tsconfig": "workspace:^0.1.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"extends": [
"@projectx/eslint-config/base"
]
},
"prettier": "@projectx/prettier-config"
}