-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.08 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.08 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
{
"name": "solid-ssg-esbuild",
"version": "0.0.1",
"type": "module",
"description": "Simple example project for building pages via SSG only - using just Solid and esbuild",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "NODE_OPTIONS='--enable-source-maps --experimental-vm-modules --experimental-import-meta-resolve --no-warnings' ts-node --esm --experimental-specifier-resolution=node ./scripts/build.ts",
"prestart": "yarn build",
"start": "NODE_OPTIONS='--enable-source-maps --experimental-vm-modules --experimental-import-meta-resolve --no-warnings' ts-node --esm --experimental-specifier-resolution=node ./scripts/start.ts"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-typescript": "^7.18.6",
"@swc/core": "^1.3.19",
"@swc/helpers": "^0.4.14",
"babel-preset-solid": "^1.6.6",
"esbuild": "^0.15.15",
"esbuild-plugin-compress": "^1.0.1",
"solid-js": "^1.6.6",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/node": "*"
}
}