This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
{
"name": "svelte-summit-",
"version": "1.0.0",
"main": "./src/build.js",
"scripts": {
"build": "node ./src/cleanPublic.js && npm run build:rollup && npm run build:html && node ./src/afterBuild.js",
"build:rollup": "rollup -c",
"build:html": "node ./src/build.js",
"dev:rollup": "rollup -c -w --no-watch.clearScreen",
"dev:server": "nodemon",
"eslint": "eslint --ext .js .",
"eslint:fix": "eslint --fix --ext .js ."
},
"type": "commonjs",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@elderjs/browser-reload": "0.0.8",
"@elderjs/elderjs": "^1.0.0",
"@elderjs/plugin-browser-reload": "^0.1.7",
"@elderjs/plugin-critical-path-css": "^0.1.6",
"@elderjs/plugin-sitemap": "^0.1.7",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"css-media-vars": "^1.0.1",
"del": "^5.1.0",
"dotenv": "^8.2.0",
"elderjs-plugin-google-fonts": "^1.0.2",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"intersection-observer": "^0.11.0",
"markdown-js": "^0.0.4",
"polka": "^0.5.2",
"remark": "^12.0.1",
"remark-html": "^12.0.0",
"sirv": "^1.0.5",
"svelte": "^3.24.0",
"svelte-css-vars": "0.0.1",
"svelte-preprocess": "^4.0.9",
"systemjs": "^6.4.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"autoprefixer": "^9.8.6",
"eslint": "^7.4.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-config-prettier": "^6.11.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rollup": "^2.21.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-external-globals": "^0.5.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-svelte": "^5.2.3",
"rollup-plugin-terser": "^6.1.0"
}
}