-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.24 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.24 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
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
100
101
102
103
{
"name": "simplyteam-front",
"version": "0.0.1",
"private": true,
"lint-staged": {
"src/**/*.{js,ts,css,scss,md,json}": [
"prettier --plugin-search-dir . --write",
"git add"
],
"src/**/*.{svelte,html}": [
"prettier --plugin-search-dir . --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"type": "module",
"scripts": {
"dev": "vite dev --port 3000 --host",
"start:test": "vite dev --port 3001 --host --mode testing",
"build": "vite build",
"test:e2e": "cypress open",
"preview": "vite preview",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext svelte --ext tsx --ext js",
"test-all": "pnpm run check-format && pnpm run check-lint && npm run check-types && pnpm run build",
"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 ."
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^18.0.5",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.7.0",
"@cypress-audit/lighthouse": "^1.4.2",
"@cypress/webpack-preprocessor": "^6.0.0",
"@faker-js/faker": "^8.0.2",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-node": "^1.2.3",
"@sveltejs/adapter-vercel": "^3.0.3",
"@sveltejs/kit": "^1.5.0",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.13",
"axios-mock-adapter": "^1.21.4",
"cypress": "^12.12.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"i": "^0.3.7",
"lint-staged": "^13.2.0",
"postcss": "^8.4.24",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"pretty-quick": "^3.1.3",
"stripe": "^13.4.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-stripe": "^0.0.22",
"sveltekit-autoimport": "^1.6.10",
"tailwindcss": "^3.2.6",
"ts-loader": "^9.4.4",
"tslib": "^2.4.1",
"typescript": "^5.1.3",
"vite": "^4.0.0",
"webpack": "^5.88.2"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@lhci/cli": "0.12.x",
"@stripe/stripe-js": "^2.1.1",
"@vercel/analytics": "^1.0.2",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"daisyui": "^3.1.5",
"date-fns": "^2.30.0",
"date-picker-svelte": "^2.6.0",
"install": "^0.13.0",
"lottie-web": "^5.12.0",
"moment": "^2.29.4",
"moment-with-locales-es6": "^1.0.1",
"sass": "^1.58.1",
"svelecte": "^3.15.3",
"svelte-confetti": "^1.3.0",
"svelte-fa": "^3.0.3",
"svelte-select": "^5.6.1",
"tailwind-merge": "^1.13.2"
},
"stepDefinitions": [
"cypress/e2e/[filepath]/**/*.{js,ts}",
"cypress/e2e/[filepath].{js,ts}",
"cypress/support/step_definitions/**/*.{js,ts}"
]
}