generated from metachris/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.11 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.11 KB
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
74
75
76
77
78
79
80
81
82
83
{
"name": "@monoid-dev/split-pages",
"version": "2.0.0",
"private": false,
"description": "Generate routing with code-splitting",
"author": "Chenyu Wang <cwang592@usc.edu>",
"repository": "https://github.com/MonoidDev/split-pages",
"license": "MIT",
"keywords": [
"typescript"
],
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./src",
"typesVersions": {
">=4.2": {
".": [
"./src/index.ts"
],
"client": [
"./src/client.ts"
]
}
},
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
},
"./client": {
"require": "./dist/cjs/client.cjs",
"import": "./dist/esm/client.mjs"
}
},
"bin": {
"split-pages": "./dist/cjs/cli.cjs"
},
"scripts": {
"cli": "yarn ts src/cli.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "echo 'no test'",
"clean": "rm -rf dist",
"ts": "yarn node -r esbuild-register",
"build": "yarn clean && yarn esbuild",
"watch": "NODE_ENV=development yarn esbuild",
"esbuild": "node esbuild.mjs",
"prepare": "yarn lint && yarn build"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@monoid/utils.eslint.config": "^0.0.3",
"@monoid/utils.prettier.config": "0.0.2",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "5",
"@types/yargs": "^17.0.4",
"esbuild": "^0.14.14",
"esbuild-node-externals": "^1.3.0",
"esbuild-register": "^3.3.2",
"esmo": "^0.10.1",
"jest": "^26.6.3",
"only-allow": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.6.0"
},
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-react": "^7.16.7",
"@microsoft/tsdoc": "^0.13.2",
"@monoid-dev/reform": "^1.1.1",
"prettier": "^2.4.1",
"react-router-dom": "^5.0.0",
"walkdir": "^0.4.1",
"yargs": "^17.2.1"
},
"publishConfig": {
"access": "public"
}
}