-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.95 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
{
"private": true,
"name": "nextjs-routes-development",
"version": "0.0.1",
"license": "MIT",
"author": "Tate <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tatethurston/nextjs-routes"
},
"type": "module",
"scripts": {
"package:build": "pnpm package:copy:files && pnpm --filter nextjs-routes run package:build",
"package:copy:files": "cp ./LICENSE ./README.md packages/nextjs-routes",
"e2e:setup": "pnpm package:build && (cd packages/e2e && pnpm next build)",
"examples:each": "for e in ./examples/*; do (cd \"$e\" && $npm_config_command); done",
"examples:regen": "npm run examples:each --command='pnpm next build'",
"lint": "pnpm typecheck && prettier --check . && eslint . && pnpm prettier-package-json --list-different './{packages,examples}/*/package.json'",
"lint:fix": "prettier --write '**/*.{ts,cts,mts,tsx,md,json,yaml}' && prettier-package-json --write './{packages,exmaples}/*/package.json' && eslint --fix .",
"prepare": "husky install",
"test": "pnpm run e2e:setup && jest",
"test:ci": "pnpm run test --coverage",
"typecheck": "pnpm --recursive exec tsc --noEmit"
},
"sideEffects": false,
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.10.0",
"@swc/core": "^1.7.26",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@types/react": "^18.3.5",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"babel-loader": "^9.1.3",
"codecov": "^3.8.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"next": "^14.2.11",
"prettier": "^3.3.3",
"prettier-package-json": "^2.8.0",
"swc-loader": "^0.2.6",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]"
}