forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"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 --skip-project _tools/process-data.ts"
},
"keywords": [
"chainlink",
"documentation"
],
"author": "Stephen Fluin",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@readme/markdown": "^6.26.6",
"@readme/variable": "^13.0.0",
"@types/node": "^14.14.39",
"date-fns": "^2.21.1",
"eleventy-plugin-youtube-embed": "^1.6.2",
"firebase-tools": "^9.8.0",
"html-minifier": "^4.0.0",
"react": "^16.0.0",
"react-dom": "^16.14.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=14"
},
"engineStrict": true,
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true
}
}