-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.15 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
{
"$schema": "http://json.schemastore.org/package.json",
"name": "read262",
"private": true,
"license": "MIT",
"scripts": {
"cache-spec": "curl https://tc39.es/ecma262/ > util/cache.html",
"build": "eleventy",
"start": "eleventy --serve",
"prettier": "prettier . --ignore-path .gitignore --ignore-path .prettierignore",
"format": "yarn prettier --write",
"test": "yarn prettier --check && yarn tsc"
},
"engines": {
"node": ">=10.x"
},
"dependencies": {
"@fontsource/merriweather": "^5.0.5",
"algoliasearch": "^4.19.1",
"firacode": "^6.2.0",
"instantsearch.js": "^4.56.8",
"jsdom": "^22.1.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@types/glob": "^8.1.0",
"@types/lodash.chunk": "^4.2.7",
"algolia-indexing": "^1.3.0",
"chalk-template": "^1.1.0",
"dotenv": "^16.3.1",
"eleventy-hast-jsx": "^0.3.5",
"glob": "^10.3.3",
"hast-util-select": "^5.0.5",
"hast-util-to-html": "^8.0.4",
"hast-util-to-string": "^2.0.0",
"ora": "^6.3.1",
"prettier": "^3.0.0",
"rehype-parse": "^8.0.4",
"unified": "^10.1.2",
"unist-util-parents": "^3.0.0"
}
}