-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
134 lines (134 loc) · 3.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"contributors": [
{
"email": "pujunyu@gmail.com",
"name": "Junyu Pu",
"url": "https://ostoc.github.io/"
},
{
"email": "kevinigeligeligel@gmail.com",
"name": "Kevin Peters",
"url": "https://www.kevinpeters.net/"
},
{
"email": "fw@3yourmind.com",
"name": "Florian Wendelborn",
"url": "https://hello.dodekeract.com/npm/@3yourmind/kotti-ui"
},
{
"email": "jo@3yourmind.com",
"name": "James O'Shea",
"url": "https://github.com/jamesoshea"
},
{
"email": "tquinonero@gmail.com",
"name": "Tom Quinonero",
"url": "https://github.com/tomquinonero"
},
{
"email": "melvinvangent@gmail.com",
"name": "Melvin van Gent",
"url": "https://github.com/mvangent"
},
{
"email": "nhirschfeld@gmail.com",
"name": "Na'aman Hirschfeld",
"url": "https://github.com/Goldziher"
},
{
"email": "amr.m.draz@gmail.com",
"name": "Amr Draz",
"url": "https://github.com/amrdraz"
},
{
"email": "caroleemad96@gmail.com",
"name": "Carol Soliman",
"url": "https://github.com/carsoli"
}
],
"dependencies": {},
"devDependencies": {
"@3yourmind/eslint-config": "*",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.11.16",
"eslint": "^9.17.0",
"husky": "^7.0.1",
"knip": "^5.13.0",
"lerna": "^7.4.2",
"lint-staged": "^11.0.1",
"nodemon": "^3.0.3",
"postcss": "^8.4.38",
"postcss-html": "^1.6.0",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-csstree-validator": "^3.0.0",
"stylelint-prettier": "^4.0.2",
"turbo": "^1.13.3",
"typescript": "5.4.4",
"typescript-eslint": "^7.8.0"
},
"engines": {
"node": "20"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"*.{css,scss,vue}": [
"stylelint --fix"
],
"*.{js,vue,ts}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.22",
"prettier": {
"arrowParens": "always",
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/3YOURMIND/kotti.git"
},
"scripts": {
"build": "turbo run build",
"check": "turbo run check",
"check:eslint": "turbo run check:eslint",
"check:knip": "turbo run check:knip",
"check:prettier": "turbo run check:prettier",
"check:publint": "turbo run check:publint",
"check:stylelint": "turbo run check:stylelint",
"debug:turbo": "turbo run build --graph --dry | dot -Tpng -oturbo-graph.png && open turbo-graph.png",
"fix": "turbo run fix",
"fix:eslint": "turbo run fix:eslint",
"fix:prettier": "turbo run fix:prettier",
"fix:stylelint": "turbo run fix:stylelint",
"prepare": "husky install",
"prepublishOnly": "turbo run check build",
"tarball": "turbo run tarball",
"test": "turbo run test",
"watch": "nodemon -e css,js,json,scss,ts,vue --watch packages/vue-use-tippy/source --watch packages/yoco/source --exec \"turbo run watch\""
},
"version": "1.0.0",
"workspaces": [
"internals/*",
"packages/*"
]
}