forked from smartcontractkit/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.06 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
{
"name": "chainlink-docs",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "npx hardhat compile",
"serve": "NODE_ENV=development concurrently \"watchify _src/index.ts -p [ tsify ] -o _src/index.js\" \"watchify _src/keepers-configuration.ts -p [ tsify ] -o _src/keepers-configuration.js\" \"watchify _src/animate-chain-transitions.ts -p [ tsify ] -o _src/animate-chain-transitions.js\" \"npx @11ty/eleventy --serve --port=4200\"",
"build": "browserify _src/index.ts -t [ uglifyify ] -p [ tsify ] -o _src/index.js && browserify _src/keepers-configuration.ts -t [ uglifyify ] -p [ tsify ] -o _src/keepers-configuration.js && browserify _src/animate-chain-transitions.ts -t [ uglifyify ] -p [ tsify ] -o _src/animate-chain-transitions.js && 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": "^1.0.0",
"@chainlink/contracts": "^0.4.0",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@readme/markdown": "^6.38.7",
"@readme/variable": "^14.0.0",
"@types/node": "^17.0.23",
"browserify": "^17.0.0",
"concurrently": "^7.1.0",
"dart-linkcheck": "^2.0.15",
"date-fns": "^2.28.0",
"eleventy-plugin-youtube-embed": "^1.7.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.0.0",
"firebase-tools": "^10.6.0",
"graphql": "^16.3.0",
"hardhat": "^2.9.3",
"html-minifier": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-node": "^10.7.0",
"tsify": "^5.0.4",
"typescript": "^4.6.3",
"uglifyify": "^5.0.2",
"watchify": "^4.0.0"
},
"engines": {
"node": ">=14"
},
"engineStrict": true,
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120
}
}