-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
{
"name": "kitcoin",
"version": "0.13.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"module": "esnext",
"scripts": {
"start": "node .",
"build": "gulp",
"build:dev": "gulp --dev",
"build:production": "gulp --production",
"dev": "gulp dev",
"tsc": "tsc",
"watch": "gulp dev --watch",
"format": "prettier --write .",
"frontend:dev": "(cd frontend && routify & vite --port 8080)",
"frontend:build:dev": "(cd frontend && routify -b && vite build --mode dev)",
"frontend:build": "(cd frontend && routify -b && vite build)",
"frontend:icons": "gulp icons"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeths/kitcoin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codeths/kitcoin/issues"
},
"homepage": "https://github.com/codeths/kitcoin#readme",
"devDependencies": {
"@roxi/routify": "^2.18.5",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.40",
"@types/compression": "^1.7.2",
"@types/connect-mongodb-session": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/escape-html": "^1.0.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/formidable": "^2.0.4",
"@types/node": "^17.0.23",
"@types/sharp": "^0.29.5",
"autoprefixer": "^10.4.4",
"daisyui": "^1.25.4",
"del": "^6.0.0",
"fantasticon": "^1.2.3",
"gulp": "^4.0.2",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.4",
"prettier": "2.4.0",
"prettier-plugin-svelte": "^2.6.0",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.46.6",
"svelte-chartjs": "^1.1.4",
"svelte-preprocess": "^4.10.4",
"tailwindcss": "^3.0.23",
"tsc-watch": "^4.6.2",
"tslib": "^2.3.1",
"typescript": "^4.6.3",
"vite": "^2.9.1"
},
"dependencies": {
"@typegoose/typegoose": "^9.7.1",
"@types/nodemailer": "^6.4.14",
"bullmq": "^5.1.4",
"compression": "^1.7.4",
"connect-mongodb-session": "^3.1.1",
"cookie-parser": "^1.4.6",
"escape-html": "^1.0.3",
"express": "^4.17.3",
"express-session": "^1.17.2",
"formidable": "^3.2.1",
"googleapis": "^100.0.0",
"json-2-csv": "^5.5.5",
"mongoose": "^6.2.9",
"mongoose-fuzzy-searching": "github:codeths/mongoose-fuzzy-searching",
"nanoid": "^3.3.2",
"nodemailer": "^6.9.8",
"read-excel-file": "^5.8.4",
"regex-escape": "^3.4.10",
"sharp": "^0.30.4"
}
}