-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.7 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
{
"name": "sec.cyou",
"type": "module",
"version": "1.0.0",
"description": "This repo is a catalogue of [DeFi](https://en.wikipedia.org/wiki/Web3) platforms that facilitate permissionless and [KYC-free](https://en.wikipedia.org/wiki/Know_your_customer) trading.",
"main": "dist/build.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite serve",
"build:static": "vite build --emptyOutDir --outDir ../dist/static",
"build:server": "vite build --ssr entry-server.tsx --outDir ../dist/server --emptyOutDir",
"build:assets": "mkdir -p public && cp -r dist/static/* public/ && cp -r src/assets/* public/assets/ && cp -r src/icons/* public/",
"build": "npm run build:static && npm run build:server && node build && npm run build:assets",
"preview": "vite preview",
"lint": "eslint src/"
},
"author": "sec.cyou",
"license": "ISC",
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@tippyjs/react": "^4.2.6",
"@types/color-hash": "^1.0.2",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"better-ajv-errors": "^1.2.0",
"classnames": "^2.3.2",
"color-hash": "^2.0.2",
"fuzzysort": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.4.9"
},
"devDependencies": {
"@types/web": "^0.0.114",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"typescript": "^5.2.2",
"typescript-language-server": "^3.3.2"
}
}