-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.61 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
{
"name": "elderjs-ts-template",
"version": "1.0.0",
"description": "This is a project template for [Elder.js](https://elderguide.com/tech/elderjs/) apps. The template lives at https://github.com/elderjs/template and the Elder.js source is here: https://github.com/elderjs/elderjs",
"main": "./build/build.js",
"scripts": {
"start": "run-s dev",
"build": "run-s build:ts clean build:type-check build:html",
"build:ts": "etsc --config=etsc.config.cjs",
"build:html": "node --enable-source-maps ./build/build.js",
"build:type-check": "tsc -p tsconfig.json",
"clean": "node ./build/cleanPublic.js",
"run:server": "NODE_ENV=production node --enable-source-maps ./build/server.js",
"serve": "run-s build:ts clean build:typecheck run:server",
"dev": "run-s build:ts watch:watch",
"watch:watch": "run-p watch:ts watch:type-check watch:serve",
"watch:serve": "node --enable-source-maps ./build/server.js",
"watch:ts": "nodemon",
"watch:type-check": "tsc -p tsconfig.json -w",
"ts": "nodemon"
},
"type": "module",
"engines": {
"node": ">= 14.10.0"
},
"dependencies": {
"@elderjs/elderjs": "1.8.0-beta.11",
"@elderjs/plugin-markdown": "1.8.0-beta.7",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"del": "^6.0.0",
"dotenv": "^8.2.0",
"fs-extra": "^9.1.0",
"fast-glob": "^3.2.11",
"microtip": "^0.2.2",
"polka": "^0.5.2",
"sirv": "^1.0.11",
"svelte": "^3.48.0",
"svelte-preprocess": "^4.10.6",
"water.css": "^2.1.1"
},
"devDependencies": {
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"autoprefixer": "^10.2.5",
"esbuild": "^0.14.43",
"esbuild-node-tsc": "^1.8.6",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^2.2.0",
"typescript": "^4.7.2"
},
"files": [
"index.js",
"elderjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Elderjs/template.git"
},
"keywords": [
"svelte",
"elderjs",
"ssr",
"static",
"site",
"generator",
"seo",
"ssg",
"template",
"partial",
"hydration"
],
"bugs": {
"url": "https://github.com/Elderjs/template/issues"
},
"homepage": "https://github.com/Elderjs/template#readme"
}