-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "my-website",
"version": "0.1.0",
"private": true,
"main": "src/index.js",
"scripts": {
"start": "vite build && node src/index.js",
"dev": "vite dev & node src/index.js"
},
"dependencies": {
"@sentry/node": "^7.0.0",
"@sentry/tracing": "^7.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.6",
"core-js": "^3.6.5",
"diff": "^5.1.0",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"log75": "^2.2.0",
"markdown-it": "^12.3.2",
"markdown-it-container": "^3.0.0",
"markdown-it-named-headings": "^1.1.0",
"monaco-editor": "^0.33.0",
"mongodb": "^4.2.0",
"morgan": "^1.10.0",
"showdown": "^2.0.0-alpha",
"vue": "^3.2.45"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}