-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "central-router",
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"clean": "pnpm clean:workspaces && rm -rf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.1",
"turbo": "^1.6.3"
},
"devDependencies": {
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dir-zip/central-router.git"
},
"keywords": [
"nextjs"
],
"author": "Dillon Raphael",
"license": "MIT",
"types": "./packages/core/dist/index.d.ts",
"bugs": {
"url": "https://github.com/dir-zip/central-router/issues"
},
"homepage": "https://github.com/dir-zip/central-router#readme"
}