-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
{
"name": "@user-credits/svelte-ui",
"author": "Zied Hamdi",
"type": "module",
"license": "MIT",
"version": "1.1.2-beta",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"svelte": "./dist/index.svelte.js"
}
},
"svelte": "./dist/index.svelte.js",
"publishConfig": {
"access": "public"
},
"description": "Work in progress: Svelte components demo at user-credits.dev to manage payment and user credits: based on the @user-credits libraries for its backend",
"repository": {
"type": "git",
"url": "https://github.com/ziedHamdi/svelte-user-credits"
},
"homepage": "http://user-credits.dev",
"scripts": {
"dev": "vite dev",
"build": "pnpm build-netlify && vite build",
"preview": "vite preview",
"test": "pnpm test:integration && pnpm test:unit",
"vitest": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"pck": "svelte-package",
"prepublishOnly": "pnpm test & svelte-package",
"build-netlify": "rm -rf dist && mkdir dist && rsync -rv * dist --exclude ./dist"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@sveltejs/adapter-netlify": "^2.0.8",
"@sveltejs/kit": "^1.27.4",
"@sveltejs/package": "^2.2.3",
"@tsconfig/svelte": "^5.0.2",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.35.0",
"postcss": "^8.4.31",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte-check": "^3.6.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-node": "^3.1.0",
"vitest": "^0.32.4"
},
"dependencies": {
"@stripe/stripe-js": "^2.1.11",
"@user-credits/base-ui": "^1.0.1-beta",
"@user-credits/core": "^1.0.5-beta",
"@user-credits/stripe-mongoose": "^1.0.4-beta",
"awilix": "^9.0.0",
"bson-objectid": "^2.0.4",
"esm-env": "^1.0.0",
"mongoose": "^8.0.0",
"preline": "^2.0.2",
"stripe": "^14.5.0",
"svelte": "^4.2.7",
"svelte-stripe": "^0.0.25",
"tailwindcss": "^3.3.5"
}
}