forked from Web3DAO-CN/solidity-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "solidity-example",
"version": "0.1.0",
"private": true,
"homepage": "https://web3dao-cn.github.io/solidity-example",
"dependencies": {
"highlight.js": "^11.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.2.1",
"react-scripts": "^5.0.0",
"typescript": "^4.3.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"postbuild": "npm run lint && react-snap",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -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.1",
"@types/mustache": "^4.1.2",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"gh-pages": "^3.2.3",
"highlightjs-solidity": "^2.0.3",
"marked": "^4.0.10",
"mustache": "^4.2.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"react-snap": "^1.23.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"yaml": "^1.10.2"
}
}