-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "next-type-safe-routes",
"version": "0.3.1-alpha.1",
"description": "Never should your users experience broken links again!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"bin",
"plugin.js"
],
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "yarn jest --updateSnapshot",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"chokidar": "^3.5.1",
"mkdirp": "^1.0.4",
"walk-sync": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.34",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"commander": "^7.1.0",
"eslint": "^8.7.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^2.5.1",
"ts-jest": "^26.5.4",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckastbjerg/next-type-safe-routes.git"
},
"keywords": [],
"author": "Christian Kastbjerg",
"license": "ISC"
}