forked from WebCrateApp/webcrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.23 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
{
"name": "webcrate",
"version": "1.4.3",
"private": true,
"scripts": {
"dev:server": "tsc-watch -p ./server/tsconfig.json --onSuccess \"node ./build/index.js\"",
"build:nuxt": "nuxt generate",
"build:server": "tsc -p ./server/tsconfig.json",
"lint:nuxt": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:server": "eslint ./server/ --ext .ts",
"copy-templates": "cp -R ./server/views ./build/views && cp ./server/service/image/NotoColorEmoji.ttf ./build/service/image",
"clean": "rimraf dist build .nuxt",
"postbuild:server": "npm run copy-templates",
"prebuild": "npm run clean",
"predev": "npm run clean",
"predeploy": "npm run build",
"update": "git pull && npm ci && npm run deploy",
"save": "git push && npm run deploy",
"dev": "nuxt",
"build": "npm run build:nuxt && npm run build:server",
"lint": "npm run lint:nuxt && npm run lint:server",
"start": "NODE_ENV=production node build/index.js",
"deploy": "deta deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betahuhn/webcrate.git"
},
"keywords": [],
"author": "Maximilian Schiller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betahuhn/webcrate/issues"
},
"homepage": "https://github.com/betahuhn/webcrate#README",
"dependencies": {
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.10",
"chrome-aws-lambda": "^10.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"deta": "^1.0.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"metadata-scraper": "^0.2.43",
"nanoid": "^3.1.30",
"puppeteer-core": "^10.4.0",
"running-at": "^0.3.21",
"signale": "^1.4.0"
},
"devDependencies": {
"@betahuhn/config": "^1.2.0",
"@blokwise/dynamic": "^1.5.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/axios": "^5.13.1",
"@nuxtjs/eslint-config-typescript": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/pwa": "^3.3.5",
"@tiptap/extension-link": "^2.0.0-beta.23",
"@tiptap/extension-placeholder": "^2.0.0-beta.35",
"@tiptap/extension-task-item": "^2.0.0-beta.21",
"@tiptap/extension-task-list": "^2.0.0-beta.18",
"@tiptap/starter-kit": "^2.0.0-beta.127",
"@tiptap/vue-2": "^2.0.0-beta.60",
"@types/body-parser": "^1.19.1",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/node": "^15.14.9",
"@types/signale": "^1.4.2",
"babel-eslint": "^10.1.0",
"core-js": "^3.18.3",
"debounce": "^1.2.1",
"drkmd-js": "^1.0.12",
"ejs-serve": "^1.2.30",
"eslint": "^7.32.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.19.1",
"got": "^11.8.2",
"nuxt": "^2.15.8",
"rimraf": "^3.0.2",
"sass": "^1.43.2",
"sass-loader": "10.1.1",
"ts-node": "^10.3.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4",
"underscore": "^1.13.1",
"vue-click-outside": "^1.1.0",
"vue-images-loaded": "^1.1.2",
"vue-infinite-loading": "^2.4.5",
"vue-select": "^3.15.0",
"vue-shortkey": "^3.1.7",
"vue-stack-grid": "^1.2.2",
"vue-textarea-autosize": "^1.1.1",
"vue-toast-notification": "^0.6.2"
}
}