forked from kiliman/remix-flat-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "remix-flat-routes",
"version": "0.6.5",
"description": "Package for generating routes using flat convention",
"main": "dist/index.js",
"bin": {
"migrate-flat-routes": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc --project tsconfig.build.json --module CommonJS --outDir ./dist",
"test": "jest",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepare": "npm run typecheck && npm run build",
"typecheck": "tsc -b",
"migrate": "rm -rf ./app/flat-files ./app/flat-folders && npm run build && node ./dist/cli.js"
},
"keywords": [
"remix",
"routing-convention"
],
"author": {
"name": "Kiliman",
"email": "[email protected]",
"url": "https://kiliman.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/kiliman/remix-flat-routes.git"
},
"license": "MIT",
"dependencies": {
"@remix-run/v1-route-convention": "^0.1.3",
"fs-extra": "^11.1.1",
"minimatch": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@remix-run/dev": "^1.18.1",
"@types/fs-extra": "^11.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.21",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.4.2",
"esbuild": "^0.14.36",
"esbuild-register": "^3.3.2",
"formdata-polyfill": "^4.0.10",
"jest": "^27.4.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"testEnvironment": "jsdom"
},
"peerDependencies": {
"@remix-run/dev": "^1.15.0 || ^2"
}
}