-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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": "vyper-by-example",
"version": "0.1.0",
"private": true,
"homepage": "https://vyper-by-example.org",
"scripts": {
"start": "vite",
"preview": "vite preview",
"prebuild": "npm run clean",
"build": "tsc && vite build",
"postbuild": "npm run lint && npm run copy && npm run copy-404",
"clean": "rm -rf build",
"copy": "npx ts-node scripts/build.ts",
"copy-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.26.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/highlight.js": "^9.12.4",
"@types/lodash.debounce": "^4.0.9",
"@types/marked": "^5.0.2",
"@types/mustache": "^4.2.5",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.3.1",
"gh-pages": "^6.1.1",
"marked": "^14.0.0",
"marked-highlight": "^2.1.4",
"mustache": "^4.2.0",
"prettier": "^3.3.3",
"serve": "^14.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-tsconfig-paths": "^5.0.1",
"yaml": "^2.5.0"
}
}