This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "next-pwa-project",
"version": "1.0.0",
"author": "Imamuzzaki Abu Salam <imamuzzaki@gmail.com>",
"devDependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"concurrently": "8.2.0",
"config-prettier": "workspace:*",
"dotenv-cli": "7.2.1",
"eslint": "8.46.0",
"eslint-config-custom": "workspace:*",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"syncpack": "9.8.6",
"turbo": "1.10.12"
},
"engines": {
"pnpm": "8",
"node": ">=16.0.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"license": "MIT",
"packageManager": "pnpm@8.6.12",
"private": true,
"repository": "https://github.com/ImBIOS/next-pwa",
"scripts": {
"prepare": "husky install",
"build": "dotenv -- turbo run build",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint -- --fix && pnpm run lint:packages",
"lint:packages": "concurrently \"pnpm:lint:packages:*\"",
"lint:packages:semver": "syncpack lint-semver-ranges",
"lint:packages:mismatches": "syncpack fix-mismatches",
"format": "prettier --write .",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --ext js,jsx,ts,tsx --quiet --fix --",
"prettier --write"
],
"*.{md,mdx,mjs,yml,yaml,css}": [
"prettier --write"
]
}
}