forked from uvarov-frontend/vanilla-calendar-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.06 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-project",
"version": "0.0.0",
"homepage": "https://vanilla-calendar.com",
"directories": {
"demo": "demo/*",
"docs": "docs/*",
"package": "package/*"
},
"repository": {
"type": "git",
"url": "https://github.com/uvarov-frontend/vanilla-calendar.git"
},
"author": {
"name": "Yury Uvarov",
"email": "[email protected]",
"url": "https://frontend.uvarov.tech"
},
"license": "MIT",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"minify": "node minify.config.js --files=package/build/vanilla-calendar.min.js,package/build/vanilla-calendar.min.mjs,package/utilities/index.js,package/utilities/index.mjs",
"dist": "tsc && vite build --config config/vanilla-calendar.config.ts && vite build --config config/utilities.config.ts && vite build --config config/styles.config.ts",
"package": "npm-run-all dist minify",
"build": "tsc && vite build",
"dev": "tsc && vite",
"lint": "eslint --ext .js,.ts package/src cypress examples",
"fix": "eslint --fix --ext .js,.ts package/src cypress examples",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:cypress": "start-server-and-test dev http://localhost:5173 cypress:run"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"@types/cypress": "^1.1.3",
"@types/node": "^18.14.4",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^10.4.16",
"cypress": "^12.11.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.2.7",
"terser": "^5.16.5",
"typescript": "^4.9.3",
"vite": "^4.5.0",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {}
}