-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.08 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
{
"name": "next-route-typesafe",
"version": "0.0.10",
"source": "src/index.ts",
"module": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"description": "for nextjs routes type-safe",
"author": "taekwoosong <[email protected]>",
"bin": {
"generate-routes-types": "./bin/index.js"
},
"sideEffects": false,
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/howbuild/next-route-typesafe.git"
},
"engineStrict": true,
"engines": {
"node": ">= 16"
},
"scripts": {
"lint": "eslint --fix",
"format": "prettier --write",
"build": "rimraf dist && rollup -c",
"type-check": "tsc --noEmit",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,js}": [
"yarn lint",
"yarn format",
"bash -c 'yarn type-check'"
]
},
"dependencies": {
"chalk": "4.1.2",
"fast-glob": "^3.2.12",
"next": "^12.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.13",
"@babel/runtime-corejs3": "^7.20.13",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"commitizen": "^4.3.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"rollup": "^3.17.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"next": "^12.0.0"
},
"packageManager": "[email protected]"
}