-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.65 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
57
58
59
60
61
62
63
{
"name": "parliamentary-system",
"private": true,
"version": "1.6.2",
"workspaces": [
"apps/*"
],
"scripts": {
"build": "turbo run build",
"codegen": "turbo run codegen",
"start": "turbo run start",
"dev": "turbo run dev",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint",
"postinstall": "husky install",
"semantic-release": "semantic-release"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20"
},
"volta": {
"node": "20.5.0",
"yarn": "3.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/informatyzacja/parliamentary-system.git"
},
"author": "Michał Korczak (https://omikor.in)",
"maintainers": [
"Michał Korczak (https://omikor.in)",
"Dawid Stachowiak",
"Bartosz Gotowski",
"Jakub Wiczkowski"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/informatyzacja/parliamentary-system/issues"
},
"homepage": "https://github.com/informatyzacja/parliamentary-system#readme",
"devDependencies": {
"@omikorin/prettier-config": "^1.0.0",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/parser": "^6.6.0",
"conventional-changelog-conventionalcommits": "^7.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"semantic-release": "^21.1.1",
"turbo": "^1.10.13",
"wait-on": "^7.0.1"
},
"prettier": "@omikorin/prettier-config",
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
],
"*.{js,jsx,ts,tsx,graphql,gql}": "eslint --ext .js,.jsx,.ts,.tsx,.graphql,.gql "
}
}