forked from Cyfrin/solidity-by-example.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "solidity-by-example",
"version": "0.1.0",
"private": true,
"homepage": "https://solidity-by-example.org",
"dependencies": {
"highlight.js": "^11.5.1",
"npm-check-updates": "^12.5.9",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"typescript": "^4.6.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"postbuild": "npm run lint && npm run copy-index-to-404",
"copy-index-to-404": "cp build/index.html build/404.html",
"eject": "react-scripts eject",
"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"
],
"devDependencies": {
"@types/highlight.js": "^9.12.4",
"@types/marked": "^4.0.3",
"@types/mustache": "^4.1.2",
"@types/node": "^17.0.24",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"gh-pages": "^3.2.3",
"highlightjs-solidity": "^2.0.5",
"marked": "^4.0.14",
"mustache": "^4.2.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.7.0",
"typescript": "^4.5.5",
"yaml": "^2.0.0"
}
}