-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "cube-note",
"version": "1.0.1",
"main": "index.js",
"repository": "[email protected]:HoPGoldy/cube-note.git",
"author": "HoPGoldy <[email protected]>",
"bin": {
"cube-note": "dist/cli/index.js"
},
"scripts": {
"dev": "cross-env NODE_ENV=development concurrently \"npm run server:dev\" \"npm run client:dev\"",
"build": "npm run lint && npm run server:build && npm run client:build",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts --ext .tsx && stylelint \"src/**/*.css\"",
"server:dev": "tsx watch --tsconfig tsconfig.server.json --ignore src/client/**/* src",
"server:build": "tsc --project tsconfig.server.json && tsc-alias -p tsconfig.server.json",
"client:dev": "vite --host",
"client:build": "tsc && vite build"
},
"dependencies": {
"@bytemd/plugin-gfm": "^1.20.2",
"@bytemd/plugin-highlight": "^1.21.0",
"@bytemd/react": "^1.20.2",
"antd": "^5.3.2",
"axios": "^1.3.3",
"commander": "^10.0.0",
"copy-to-clipboard": "^3.3.2",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.4",
"fs-extra": "^10.1.0",
"joi": "^17.6.0",
"jotai": "^2.2.3",
"js-cookie": "^3.0.1",
"json5": "^2.2.3",
"jsonwebtoken": "^8.5.1",
"knex": "^2.4.2",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-jwt": "^4.0.3",
"koa-logger": "^3.2.1",
"koa-router": "^10.1.1",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"koa2-connect-history-api-fallback": "^0.1.3",
"lodash": "^4.17.21",
"nanoid": "3.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-markdown": "^8.0.5",
"react-query": "^3.39.3",
"react-router-dom": "^6.6.2",
"react-sortablejs": "^6.1.4",
"react-transition-group": "^4.4.5",
"remark-gfm": "^3.0.1",
"sortablejs": "^1.15.0",
"sqlite3": "^5.1.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/crypto-js": "^4.1.1",
"@types/fs-extra": "^9.0.13",
"@types/js-cookie": "^3.0.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/koa": "^2.13.4",
"@types/koa-jwt": "^3.3.0",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/lodash": "^4.14.182",
"@types/lokijs": "^1.5.7",
"@types/mockjs": "^1.0.4",
"@types/node": "^17.0.17",
"@types/qrcode": "^1.5.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/react-helmet": "^6.1.6",
"@types/react-transition-group": "^4.4.5",
"@types/sortablejs": "^1.13.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"less": "^4.1.3",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"prettier": "^3.0.1",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"tailwindcss": "^3.1.4",
"tsc-alias": "^1.7.0",
"tsx": "^3.12.8",
"typescript": "^4.5.2",
"vite": "^2.8.0",
"vite-plugin-compression": "^0.5.1"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {},
"postcss-import": {}
}
},
"keywords": [
"cube-note",
"note",
"markdown",
"webapp",
"react",
"koa",
"typescript"
],
"license": "MIT"
}