forked from kiliman/remix-flat-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "remix-flat-routes",
"version": "0.3.0",
"description": "Package for generating routes using flat convention",
"main": "dist/index.js",
"bin": {
"migrate-flat-routes": "dist/cli.js"
},
"files": [
"dist",
"src",
"README.md"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && esbuild --format=cjs --sourcemap --outdir=./dist ./src/*.ts",
"test": "jest",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"prepublish": "npm run build",
"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",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.21",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.4.2",
"esbuild-register": "^3.3.2",
"esbuild": "^0.14.36",
"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"
}
}