forked from ckastbjerg/next-type-safe-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.25 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": "next-type-safe-routes",
"version": "0.3.0-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,tsx}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@types/node": "^14.14.34",
"mkdirp": "^1.0.4",
"walk-sync": "^2.2.0",
"chokidar": "^3.5.1"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"commander": "^7.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckastbjerg/next-type-safe-routes.git"
},
"keywords": [],
"author": "Christian Kastbjerg",
"license": "ISC"
}