forked from nolimits4web/swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
187 lines (187 loc) · 6.49 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "swiper-src",
"version": "8.4.6",
"description": "Most modern mobile touch slider and framework with hardware accelerated transitions",
"type": "module",
"scripts": {
"build": "node scripts/build",
"build:core": "node scripts/build --only core",
"build:bundle": "node scripts/build --only bundle styles",
"build:svelte": "node scripts/build --only svelte",
"build:angular": "node scripts/build --only angular",
"build:react": "node scripts/build --only react",
"build:solid": "node scripts/build --only solid",
"build:vue": "node scripts/build --only vue",
"build:types": "node scripts/build --only types",
"build:prod": "node scripts/build --prod",
"build:prod:core": "npm run build:core -- --prod",
"build:prod:bundle": "npm run build:bundle -- --prod",
"build:prod:svelte": "npm run build:svelte -- --prod",
"build:prod:angular": "npm run build:angular -- --prod",
"build:prod:react": "npm run build:react -- --prod",
"build:prod:solid": "npm run build:solid -- --prod",
"build:prod:vue": "npm run build:vue -- --prod",
"build:prod:types": "npm run build:types -- --prod",
"build-icons-font": "python ./scripts/icon-font/generate.py",
"watch": "node scripts/watch",
"watch:prod": "node scripts/watch --prod",
"demos": "npm run build:core && npm run build:bundle && concurrently --kill-others \"vite ./demos/\" \"npm run watch\" ",
"core": "npm run build:core && npm run build:bundle && concurrently --kill-others \"vite ./playground/core\" \"npm run watch\" ",
"react": "npm run build:react && concurrently --kill-others \"vite ./playground/react\" \"npm run watch\"",
"vue": "npm run build:vue && concurrently --kill-others \"vite ./playground/vue\" \"npm run watch\"",
"svelte": "npm run build:svelte && concurrently --kill-others \"vite ./playground/svelte\" \"npm run watch\"",
"solid": "npm run build:solid && concurrently --kill-others \"vite ./playground/solid\" \"npm run watch\"",
"angular": "ng serve demo",
"angular:dev:ssr": "ng run demo:serve-ssr",
"angular:serve:ssr": "node dist/demo/server/main.js",
"angular:build:ssr": "ng build --configuration production && ng run demo:server:production",
"angular:prerender": "ng run demo:prerender",
"prettier": "prettier \"**/*.+(js|json|scss|css|less|ts|svelte|jsx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"size": "node scripts/exec-check-size.js",
"lint": "eslint --ext .js,.svelte,.jsx .",
"validate": "npm-run-all --parallel check-format lint",
"release": "npm run validate && node ./scripts/release",
"test": "npm run validate && npm run build:prod",
"test:e2e": "is-ci \"test:e2e:prod\" \"test:e2e:dev\"",
"test:e2e:dev": "cypress open",
"test:e2e:prod": "cypress run",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -u -s",
"prepare": "husky install",
"build-sponsors": "node scripts/build-sponsors.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nolimits4web/Swiper.git"
},
"keywords": [
"swiper",
"swipe",
"slider",
"touch",
"ios",
"mobile",
"cordova",
"phonegap",
"app",
"framework",
"framework7",
"carousel",
"gallery",
"plugin",
"vue",
"angular",
"svelte",
"slideshow"
],
"author": "Vladimir Kharlampidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/nolimits4web/swiper/issues"
},
"homepage": "https://swiperjs.com",
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/vladimirkharlampidi"
},
{
"type": "open_collective",
"url": "http://opencollective.com/swiper"
}
],
"engines": {
"node": ">= 4.7.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.7",
"@angular/animations": "^13.3.11",
"@angular/cli": "^13.3.7",
"@angular/common": "^13.3.11",
"@angular/compiler": "^13.3.11",
"@angular/compiler-cli": "^13.3.11",
"@angular/core": "^13.3.11",
"@angular/forms": "^13.3.11",
"@angular/platform-browser": "^13.3.11",
"@angular/platform-browser-dynamic": "^13.3.11",
"@angular/platform-server": "^13.3.11",
"@angular/router": "^13.3.11",
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@nguniversal/builders": "^13.1.1",
"@nguniversal/express-engine": "^13.1.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/express": "^4.17.13",
"@types/node": "^18.6.3",
"@types/react": "^18.0.24",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/compiler-sfc": "^3.2.37",
"all-contributors-cli": "^6.20.0",
"autoprefixer": "^10.4.8",
"babel-preset-solid": "^1.4.8",
"chalk": "^5.0.1",
"clean-css": "^5.3.1",
"codelyzer": "^6.0.2",
"concurrently": "^7.3.0",
"contentful": "^9.1.33",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"cypress": "^10.3.1",
"elapsed-time-logger": "^1.1.7",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"exec-sh": "^0.4.0",
"express": "^4.18.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"globby": "^13.1.2",
"gzip-size": "^7.0.0",
"husky": "^8.0.1",
"inquirer": "^9.0.2",
"is-ci-cli": "^2.2.0",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"ng-packagr": "^13.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"protractor": "~7.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-svelte": "^7.1.0",
"rxjs": "~7.5.6",
"solid-js": "^1.4.8",
"svelte": "^3.49.0",
"terser": "^5.14.2",
"ts-node": "~10.9.1",
"tslib": "^2.4.0",
"tslint": "~6.1.0",
"typescript": "^4.4.4",
"vite": "^3.0.4",
"vite-plugin-solid": "^2.3.0",
"vue": "^3.2.37",
"zone.js": "~0.11.4"
},
"dependencies": {
"dom7": "^4.0.4",
"ssr-window": "^4.0.2"
},
"lint-staged": {
"*.{js,svelte,jsx}": "eslint --cache --fix"
}
}