This repository was archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.9 KB
/
package.json
File metadata and controls
63 lines (63 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
{
"name": "nottes",
"version": "1.0.0",
"main": "server/index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"dev:server": "cross-env NODE_ENV=development DEVELOPMENT=server nodemon --trace-warnings server/index.js --watch server",
"build": "nuxt build",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node server/index.js",
"lint": "eslint --ext .js,.vue . --fix",
"format": "prettier --write ."
},
"dependencies": {
"@fastify/autoload": "^4.0.0",
"@fastify/cors": "^7.0.0",
"@fastify/oauth2": "^5.0.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/sitemap": "^2.4.0",
"bcrypt": "^5.0.1",
"clipboard": "^2.0.11",
"core-js": "^3.24.1",
"cryptr": "^6.0.3",
"date-fns": "^2.29.2",
"diff": "^5.1.0",
"dompurify": "^2.3.10",
"dotenv": "^9.0.2",
"fastify": "^3.29.4",
"fastify-nuxtjs": "^1.0.1",
"fastify-plugin": "^3.0.1",
"fastify-secure-session": "^2.3.1",
"fastify-swagger": "^4.17.1",
"fastify-websocket": "^3.2.2",
"jsonwebtoken": "^8.5.1",
"marked": "^4.0.19",
"mongoose": "^5.13.14",
"nanoevents": "^6.0.2",
"nanoid": "^3.3.4",
"node-fetch": "^2.6.7",
"nuxt": "^2.15.8",
"prism-theme-vars": "^0.2.4",
"prismjs": "^1.28.0",
"vue-prism-editor": "^1.3.0",
"vue-textarea-autosize": "^1.1.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@nuxtjs/color-mode": "^2.1.1",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/tailwindcss": "^4.2.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.20.0",
"nodemon": "^2.0.19",
"postcss": "^8.4.16",
"prettier": "^2.7.1"
}
}