-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
134 lines (134 loc) · 3.7 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "nostalgie",
"version": "0.77.3",
"private": true,
"description": "Nostalgie is an opinionated, full-stack, runtime-agnostic framework for building web apps and web pages using",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist",
"dev": "SKIP_EMPTY=1 NODE_ENV=development nodemon --watch src --watch scripts/build.js --ext js,jsx,ts,tsx ./scripts/build.js",
"build": "node ./scripts/build.js",
"posttest": "kacl lint",
"prepack": "npm run build",
"preversion": "kacl prerelease",
"version": "kacl release && git add CHANGELOG.md",
"postversion": "git push --follow-tags && gh-release"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.1",
"@types/hapi__cookie": "^10.1.2",
"@types/hapi__inert": "^5.2.2",
"@types/hapi-pino": "^8.0.1",
"@types/hast": "^2.3.1",
"@types/jsesc": "^2.5.1",
"@types/lru-cache": "^5.1.0",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^12.19.16",
"@types/pino": "^6.3.4",
"@types/react": "^16.14.3",
"@types/react-dom": "^16.6.0",
"@types/react-router-dom": "^5.1.7",
"@types/source-map-support": "^0.5.3",
"@types/unist": "^2.0.3",
"@types/workerpool": "^6.0.0",
"@types/yargs": "^16.0.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"gh-release": "^5.0.0",
"kacl": "^1.0.0",
"lru-cache": "^6.0.0",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-dts": "^2.0.1",
"tailwindcss": "^2.0.2",
"typescript": "^4.1.3",
"unified": "^9.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggoodman/nostalgie.git"
},
"keywords": [
"react",
"ssr",
"react-router",
"mdx",
"jamstack",
"react-query",
"framework"
],
"author": "Geoffrey Goodman",
"license": "MIT",
"bugs": {
"url": "https://github.com/ggoodman/nostalgie/issues"
},
"homepage": "https://github.com/ggoodman/nostalgie#readme",
"engines": {
"node": ">=12.13.0",
"npm": ">7.5.0"
},
"engineStrict": true,
"prettier": {
"arrowParens": "always",
"printWidth": 100,
"proseWrap": "always",
"singleQuote": true
},
"dependencies": {
"@hapi/boom": "^9.1.1",
"@hapi/catbox-object": "^2.0.0",
"@hapi/cookie": "^11.0.2",
"@hapi/hapi": "^20.0.3",
"@hapi/inert": "^6.0.3",
"@hapi/iron": "^6.0.0",
"@svgr/core": "^5.5.0",
"@svgr/plugin-jsx": "^5.5.0",
"@svgr/plugin-svgo": "^5.5.0",
"@twind/typography": "0.0.1",
"abort-controller": "^3.0.0",
"blob-polyfill": "^5.0.20210201",
"chokidar": "^3.5.1",
"esbuild": "^0.8.52",
"escape-goat": "^3.0.0",
"escape-string-regexp": "^4.0.0",
"got": "^11.8.1",
"gray-matter": "^4.0.2",
"hapi-pino": "^8.3.0",
"joi": "^17.3.0",
"jsesc": "^3.0.2",
"openid-client": "^4.4.0",
"pino": "^6.11.0",
"pino-pretty": "^4.5.0",
"piscina": "^2.1.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-helmet-async": "^1.0.7",
"react-query": "^3.9.9",
"react-router-dom": "^5.2.0",
"remark-autolink-headings": "^6.0.1",
"remark-gfm": "^1.0.0",
"remark-github": "^10.0.1",
"remark-slug": "^6.0.0",
"resolve": "^1.20.0",
"shiki": "^0.9.2",
"source-map-support": "^0.5.19",
"stacktracey": "^2.0.15",
"ts-primitives": "^3.2.0",
"twind": "^0.15.0",
"unist-util-visit": "^2.0.3",
"vfile": "^4.2.1",
"workerpool": "^6.1.0",
"xdm": "^1.1.0",
"yargs": "^16.2.0"
},
"workspaces": [
"./packages/create-nostalgie-app",
"./packages/template-javascript",
"./packages/template-typescript"
],
"volta": {
"node": "14.16.1",
"npm": "7.10.0"
}
}