forked from YogliB/svelte-fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"devDependencies": {
"@babel/core": "7.22.17",
"@babel/eslint-parser": "7.22.15",
"@testing-library/cypress": "10.0.1",
"cypress": "13.2.0",
"date-fns": "2.30.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.14.0",
"eslint-plugin-svelte3": "4.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"prettier-plugin-svelte": "3.0.3",
"start-server-and-test": "2.0.0",
"svelte": "4.2.0"
},
"lint-staged": {
"*.{js, svelte}": [
"eslint --fix"
],
"*.{svelte, html, css, scss, stylus, js, ts, json, yml, md}": [
"prettier --write --plugin-search-dir=. ."
]
},
"name": "@svelte-fullcalendar/monorepo",
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
},
"private": true,
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "pnpm --filter=\"my-app\" dev",
"lint": "eslint --color .",
"prepare": "husky install",
"test": "start-server-and-test dev http://localhost:3000 cy:run"
},
"volta": {
"node": "18.17.1"
}
}