-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "next-typescript-pwa-starter",
"version": "0.1.0",
"description": "Unofficial Next.js + Typescript + PWA starter with a latest package",
"author": "Danang Eko Alfianto <github.com/danangekal>",
"homepage": "https://github.com/danangekal/next-typescript-pwa-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/danangekal/next-typescript-pwa-starter.git"
},
"bugs": {
"url": "https://github.com/danangekal/next-typescript-pwa-starter/issues"
},
"license": "MIT",
"keywords": [
"nextjs",
"reactjs",
"typescript",
"eslint",
"prettier",
"husky",
"lint-staged",
"pwa"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --ignore-path .gitignore \"**/*.+(js|ts|tsx|css|scss|json|md|html)\" --write",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"test": "echo \"Write tests!\" && exit 0",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"next": "^13.5.4",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.8.4",
"@types/react": "^18.2.27",
"@types/react-dom": "^18.2.12",
"eslint": "^8.51.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.14"
}
}