@widelab-development/pirxey-webflow-dev 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "@widelab-development/pirxey-webflow-dev",
3
+ "version": "0.0.1",
4
+ "description": "Repository to store custom code needed for Pirxey webflow page.",
5
+ "homepage": "https://github.com/widelab-development/pirxey-webflow-dev#readme",
6
+ "license": "ISC",
7
+ "keywords": [],
8
+ "author": {
9
+ "name": "widelab development",
10
+ "url": "https://www.widelab.co/"
11
+ },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/widelab-development/pirxey-webflow-dev.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/widelab-development/pirxey-webflow-dev/issues"
18
+ },
19
+ "type": "module",
20
+ "main": "src/index.js",
21
+ "module": "src/index.js",
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "devDependencies": {
26
+ "@changesets/changelog-git": "^0.2.0",
27
+ "@changesets/cli": "^2.27.12",
28
+ "autoprefixer": "^10.4.21",
29
+ "cross-env": "^7.0.3",
30
+ "esbuild": "^0.24.2",
31
+ "esbuild-sass-plugin": "^3.3.1",
32
+ "postcss": "^8.5.3",
33
+ "postcss-cli": "^11.0.1",
34
+ "postcss-combine-duplicated-selectors": "^10.0.3",
35
+ "postcss-preset-env": "^9.6.0",
36
+ "postcss-sort-media-queries": "^5.2.0",
37
+ "prettier": "^3.4.2"
38
+ },
39
+ "dependencies": {
40
+ "gsap": "file:gsap-bonus.tgz",
41
+ "three": "^0.164.1"
42
+ },
43
+ "engines": {
44
+ "pnpm": ">=10"
45
+ },
46
+ "scripts": {
47
+ "dev": "cross-env NODE_ENV=development node ./bin/build.js",
48
+ "build": "cross-env NODE_ENV=production node ./bin/build.js",
49
+ "format": "prettier --write ./src",
50
+ "release": "changeset publish",
51
+ "update": "pnpm update -i -L -r"
52
+ }
53
+ }
package/src/index.js ADDED
@@ -0,0 +1,49 @@
1
+ import './modules/styles/_accordion.scss';
2
+ import './modules/styles/_arrows.scss';
3
+ import './modules/styles/_header.scss';
4
+ import './modules/styles/_message.scss';
5
+ import './modules/styles/_client-list.scss';
6
+ import './modules/styles/_popup.scss';
7
+ import './modules/styles/_years-counter.scss';
8
+ import './modules/styles/_slider.scss';
9
+
10
+ import { caseStudiesPin } from './modules/scripts/case-studies-pin';
11
+ import { clientList } from './modules/scripts/client-list-section';
12
+ import { contactPopup } from './modules/scripts/contact-popup';
13
+ import { showCurrentTime } from './modules/scripts/current-time';
14
+ import { headerAnimation } from './modules/scripts/header-animation';
15
+ import { headerHeroAnimation } from './modules/scripts/header-hero-animation';
16
+ import { loaderBehavior } from './modules/scripts/loader-section';
17
+ import { masteryText } from './modules/scripts/mastery-grid';
18
+ import { projectsAccordions } from './modules/scripts/projects-section';
19
+ import { scramblingText } from './modules/scripts/scramble-txt';
20
+ import { initScrollPlugins } from './modules/scripts/scroll-smooth';
21
+ import { servicesHorizontal } from './modules/scripts/services-horizontal';
22
+ import { specialAssets, specialCards } from './modules/scripts/special-section';
23
+ import { stepsCardsNew, toggleEndCard } from './modules/scripts/steps-new';
24
+ import { technologiesSlider } from './modules/scripts/technologies';
25
+ import { trustGridItems } from './modules/scripts/trust-section';
26
+ import { Stars } from './modules/scripts/webgl-stars';
27
+
28
+ window.Webflow ||= [];
29
+ window.Webflow.push(() => {
30
+ clientList();
31
+ initScrollPlugins();
32
+ loaderBehavior();
33
+ Stars();
34
+ showCurrentTime();
35
+ masteryText();
36
+ technologiesSlider();
37
+ projectsAccordions();
38
+ specialAssets();
39
+ specialCards();
40
+ trustGridItems();
41
+ contactPopup();
42
+ toggleEndCard();
43
+ scramblingText();
44
+ headerHeroAnimation();
45
+ headerAnimation();
46
+ servicesHorizontal();
47
+ caseStudiesPin();
48
+ stepsCardsNew();
49
+ });