forked from DuCanhGH/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "@ducanh2912/next-pwa-project",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": [
"packages/**",
"examples/**",
"!examples/**/.next"
],
"scripts": {
"build": "turbo run build --parallel --filter=!@next-pwa-example/*",
"deps": "node ncu.js",
"dev": "turbo run dev --parallel --filter=!@next-pwa-example/*",
"examples:build": "turbo run build --filter=@next-pwa-example/*",
"examples:dev": "turbo run dev --parallel --filter=@next-pwa-example/*",
"examples:lint": "turbo run lint --parallel --filter=@next-pwa-example/*",
"format": "prettier --write .",
"lint": "turbo run lint --parallel --filter=!@next-pwa-example/*",
"lint-staged": "lint-staged",
"new-changeset": "changeset",
"prepare": "husky install",
"publish-packages": "pnpm typecheck && pnpm lint && pnpm build && changeset publish",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@ducanh2912/next-pwa": "workspace:*",
"@ducanh2912/next-pwa-workboxless": "workspace:*",
"@types/node": "18.15.7",
"@types/shell-quote": "1.7.1",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"cross-env": "7.0.3",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jsdoc": "40.1.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"fast-glob": "3.2.12",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"next": "13.2.4",
"npm-check-updates": "16.8.0",
"prettier": "2.8.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "4.4.1",
"shell-quote": "1.8.0",
"tslib": "2.5.0",
"turbo": "1.8.5",
"typescript": "5.1.0-dev.20230324",
"webpack": "5.76.3"
}
}