-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 KB
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
61
62
63
64
65
{
"name": "vite-chain",
"private": true,
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/webceyhan/vite-chain.git"
},
"keywords": [],
"author": "Evren Ceyhan",
"license": "MIT",
"bugs": {
"url": "https://github.com/webceyhan/vite-chain/issues"
},
"homepage": "https://github.com/webceyhan/vite-chain#readme",
"scripts": {
"start": "node ./dist/main.js",
"dev": "concurrently \"npm:dev:backend\" \"npm:dev:frontend\" ",
"dev2": "concurrently \"PORT=8081 npm run dev:backend\" \"npm:dev:frontend\" ",
"dev:frontend": "vite",
"dev:backend": "ts-node-dev --respawn --project backend/tsconfig.json backend/main.ts",
"build": "npm run build:clean & npm run build:backend & npm run build:frontend",
"build:backend": "tsc --project backend/tsconfig.json",
"build:frontend": "vue-tsc --noEmit && vite build",
"build:clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch --no-cache"
},
"dependencies": {
"body-parser": "^1.20.0",
"bootstrap": "^5.1.3",
"bootstrap-icons": "^1.8.1",
"bs58check": "^2.1.2",
"chalk": "^4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"express": "^4.17.3",
"table": "^6.8.0",
"timeago.js": "^4.0.2",
"uuid": "^8.3.2",
"vue": "^3.2.25",
"vue-router": "^4.0.12",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/bs58check": "^2.1.0",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.1.1",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"@vitejs/plugin-vue": "^2.2.0",
"concurrently": "^7.1.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vue-tsc": "^0.29.8"
}
}