forked from Cyfrin/solidity-by-example.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "solidity-by-example",
"version": "0.1.0",
"private": true,
"homepage": "https://solidity-by-example.org",
"scripts": {
"start": "vite",
"preview": "vite preview",
"clean": "rm -rf build",
"prebuild": "npm run clean",
"build": "tsc && vite build",
"postbuild": "npm run lint && npm run copy-index && npm run copy-index-to-404",
"copy-index": "ts-node scripts/build.ts",
"copy-index-to-404": "cp build/index.html build/404.html",
"predeploy": "npm run build",
"deploy": "gh-pages -b master -d build",
"md-to-react": "node scripts/md-to-react.js",
"lint": "prettier --write src"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"highlight.js": "^11.8.0",
"lodash.debounce": "^4.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.13.0",
"typescript": "^5.1.3"
},
"devDependencies": {
"@types/highlight.js": "^9.12.4",
"@types/lodash.debounce": "^4.0.7",
"@types/marked": "^5.0.0",
"@types/mustache": "^4.2.2",
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/react-helmet": "^6.1.6",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.0.0",
"gh-pages": "^5.0.0",
"highlightjs-solidity": "^2.0.6",
"marked": "^5.1.0",
"marked-highlight": "^2.0.1",
"mustache": "^4.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0",
"yaml": "^2.3.1"
}
}