forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "chainlink-docs",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "NODE_ENV=development npx @11ty/eleventy --serve --port=4200",
"build": "rm -rf _site && npx @11ty/eleventy",
"deploy": "yarn build && firebase deploy",
"process": "yarn ts-node _tools/process-data.ts",
"linkcheck": "yarn ts-node _tools/linkcheck.ts"
},
"keywords": [
"chainlink",
"documentation"
],
"author": "Stephen Fluin",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@readme/markdown": "^6.30.3",
"@readme/variable": "^13.5.1",
"@types/node": "^16.7.13",
"dart-linkcheck": "^2.0.15",
"date-fns": "^2.23.0",
"eleventy-plugin-youtube-embed": "^1.6.4",
"firebase-tools": "^9.17.0",
"html-minifier": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"engines": {
"node": ">=14"
},
"engineStrict": true,
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120
}
}