forked from dillonkearns/elm-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "elm-pages",
"version": "2.1.11",
"homepage": "https://elm-pages.com",
"moduleResolution": "node",
"description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",
"main": "index.js",
"scripts": {
"start": "cd examples/end-to-end && npm start",
"test": "npx elmi-to-json --version && elm-verify-examples --run-tests && elm-test && (cd generator && mocha) && (cd examples/routing && npm i && npm run build -- --debug && elm-test) && npm run test:snapshot",
"test:snapshot": "(cd examples/escaping && npm install && npm test && cd ../..) && (cd examples/base-path && npm install && npm test && cd ../..)",
"cypress": "npm start & cypress run --spec cypress/integration/elm-pages-dev.spec.js",
"review": "elm-review"
},
"repository": "https://github.com/dillonkearns/elm-pages",
"keywords": [
"elm",
"JAMstack",
"ssg",
"static site generator",
"pwa"
],
"author": "Dillon Kearns",
"license": "BSD-3-Clause",
"dependencies": {
"chokidar": "3.5.2",
"commander": "8.3.0",
"connect": "^3.7.0",
"cross-spawn": "7.0.3",
"devcert": "^1.2.0",
"elm-doc-preview": "^5.0.5",
"elm-hot": "^1.1.6",
"fs-extra": "^10.0.0",
"globby": "11.0.4",
"gray-matter": "^4.0.3",
"jsesc": "^3.0.2",
"kleur": "^4.1.4",
"micromatch": "^4.0.4",
"object-hash": "^2.2.0",
"serve-static": "^1.14.1",
"terser": "^5.7.2",
"undici": "^4.4.7",
"which": "^2.0.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "9.0.12",
"@types/micromatch": "^4.0.2",
"@types/node": "12.20.12",
"@types/serve-static": "1.13.10",
"cypress": "^8.3.0",
"elm-optimize-level-2": "^0.1.5",
"elm-review": "^2.5.3",
"elm-test": "^0.19.1-revision7",
"elm-tooling": "^1.3.0",
"elm-verify-examples": "^5.0.0",
"elmi-to-json": "^1.2.0",
"mocha": "^9.1.0",
"typescript": "4.3.5"
},
"files": [
"generator/src/",
"generator/review/",
"src/",
"generator/template/",
"generator/static-code/"
],
"bin": {
"elm-pages": "generator/src/cli.js"
}
}