-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.16 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
{
"name": "js-bottomsheet-monorepo",
"version": "1.0.0",
"type": "module",
"description": "JS Bottomsheet Monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/js-bottomsheet"
},
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "pnpm@8.15.9",
"keywords": [
"bottomsheet",
"js-bottomsheet",
"javascript",
"snappable",
"modal"
],
"scripts": {
"build": "turbo run build",
"commit": "gacp",
"dev": "turbo run dev",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lintstyles": "turbo run lintstyles",
"lintstyles:fix": "turbo run lintstyles:fix",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pinst --disable",
"preview": "vite preview",
"test": "turbo run test"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/preset-env": "^7.26.0",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^4.2.1",
"gacp": "^3.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"npm-run-all2": "^7.0.2",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"prettier-plugin-pkg": "^0.17.1",
"stylelint": "^16.13.2",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^37.0.0",
"turbo": "^1.13.4"
},
"browserslist": {
"production": [
">0.2%",
"last 2 versions",
"Firefox ESR",
"not dead"
],
"development": [
"last 2 versions",
"not dead"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"gacp": {
"add": false,
"push": false,
"emoji": "emoji",
"editor": false
}
}