-
Notifications
You must be signed in to change notification settings - Fork 206
/
package.json
60 lines (60 loc) · 1.66 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
{
"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.10.0",
"lodash.debounce": "^4.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/highlight.js": "^10.1.0",
"@types/lodash.debounce": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/mustache": "^4.2.5",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.3",
"gh-pages": "^6.2.0",
"highlightjs-solidity": "^2.0.6",
"marked": "^14.1.3",
"marked-highlight": "^2.2.0",
"mustache": "^4.2.0",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.0.1",
"yaml": "^2.6.0"
}
}