-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
68 lines (68 loc) · 2.2 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
{
"name": "vanilla-calendar-pro-project",
"version": "0.0.0",
"homepage": "https://vanilla-calendar.pro",
"directories": {
"config": "config/*",
"cypress": "cypress/*",
"demo": "demo/*",
"docs": "docs/*",
"examples": "examples/*",
"package": "package/*"
},
"repository": {
"type": "git",
"url": "https://github.com/uvarov-frontend/vanilla-calendar-pro.git"
},
"author": {
"name": "Yury Uvarov",
"email": "[email protected]",
"url": "https://frontend.uvarov.tech"
},
"license": "MIT",
"scripts": {
"package:assets": "vite build --config config/assets.config.ts",
"package:main": "vite build --config config/main.config.ts",
"package:utils": "vite build --config config/utils.config.ts",
"package:helpers": "node helpers.js",
"package:build": "tsc && npm-run-all package:assets package:main package:utils package:helpers",
"dev": "vite",
"build": "tsc && vite build",
"lint": "ESLINT_USE_FLAT_CONFIG=true npx eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=true npx eslint . --fix",
"prettier": "prettier . --check --ignore-unknown",
"prettier:fix": "prettier . -w",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:cypress": "start-server-and-test dev http://localhost:5173 cypress:run"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@testing-library/cypress": "^10.0.2",
"@types/node": "~18.18.14",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"colors": "^1.4.0",
"cssnano": "^7.0.6",
"cypress": "^13.15.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"npm-run-all": "^4.1.5",
"pako": "^2.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.8",
"tailwindcss": "^3.4.14",
"terser": "^5.36.0",
"typescript": "~4.9.3",
"typescript-eslint": "^8.13.0",
"vite": "~4.5.5",
"vite-plugin-banner": "~0.7.1",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-eslint": "~1.8.1"
},
"dependencies": {}
}