-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 964 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
{
"private": true,
"name": "navita",
"version": "0.0.0",
"license": "MIT",
"author": "Alexander Liljengård",
"workspaces": [
"playground/*",
"packages/*",
"scripts/*"
],
"scripts": {
"build": "turbo --filter=./packages/* build",
"dev": "turbo --filter=./packages/* dev --concurrency 11",
"lint": "turbo run lint --filter=./packages/*",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "FORCE_COLOR=1 turbo --filter=./packages/* test --log-prefix=none --color",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.26.2",
"@tsconfig/strictest": "^2.0.1",
"build": "workspace:*",
"eslint": "^8.43.0",
"eslint-config": "workspace:*",
"jest": "workspace:*",
"prettier": "latest",
"turbo": "^1.10.7",
"typescript": "5.4.5"
},
"devDependencies": {
"@types/node": "^18.14.0"
},
"engines": {
"node": ">=14.0.0"
}
}