-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"private": true,
"repository": "git@github.com:Vaarna/vaarna.git",
"homepage": "https://www.vaarna.net",
"author": "Maximilian Remming <maximilian@remming.fi>",
"license": "AGPL-3.0-or-later",
"scripts": {
"test": "turbo run test",
"lint": "turbo run lint",
"fix": "turbo run fix",
"build": "turbo run build",
"root:format": "prettier --write --ignore-path .gitignore './**/*.{ts,tsx,json,yaml,css,md}'",
"root:lint": "prettier --check --ignore-path .gitignore './**/*.{ts,tsx,json,yaml,css,md}'",
"dev-services": "docker-compose up -d && script/create-dev.sh",
"dev-services-down": "docker-compose down"
},
"workspaces": [
"app/*",
"package/*"
],
"prettier": {
"printWidth": 88
},
"engines": {
"node": "^18",
"npm": "^8"
},
"devDependencies": {
"@swc/core": "1.3.21",
"@swc/jest": "0.2.23",
"@types/jest": "29.5.1",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"eslint": "8.26.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"fast-check": "3.3.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"turbo": "1.6.3",
"typescript": "4.9.3"
}
}