-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "ground",
"version": "1.1.0",
"description": "WordPress starter theme for front-end developers",
"license": "MIT",
"scripts": {
"start": "npm-run-all -p styles \"styles -- -w\" \"js -- --mode=development\" sync",
"build": "npm-run-all \"styles -- --output-style compressed\" \"js -- --mode=production\" postcss",
"styles": "node-sass -o --source-map true scss/main.scss css/main.css",
"postcss": "npx postcss css/main.css --m file --u autoprefixer cssnano -d css/",
"sync": "browser-sync start -p 'https://ground.develop' -f 'css/main.css' '**/*.php' 'js/scripts.min.js' -w",
"js": "webpack"
},
"homepage": "https://github.com/fabioquarantini/ground",
"author": {
"name": "Fabio Quarantini",
"url": "http://www.fabioquarantini.com"
},
"browserslist": [
"last 2 versions",
"> 25%",
"ie >= 11"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"autoprefixer": "^10.2.1",
"babel-loader": "^8.2.2",
"browser-sync": "^2.26.13",
"core-js": "^3.8.2",
"cssnano": "^4.1.10",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"webpack": "^5.14.0",
"webpack-build-notifier": "^2.1.1",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@dogstudio/highway": "2.2.1",
"coffeekraken-gridle": "3.0.3",
"deepmerge": "4.2.2",
"gsap": "npm:@gsap/shockingly@^3.6.0",
"imagesloaded": "4.1.4",
"include-media": "1.4.9",
"infinite-scroll": "3.0.6",
"ismobilejs": "1.1.1",
"lazysizes": "5.3.0",
"locomotive-scroll": "4.0.6",
"normalize.css": "8.0.1",
"photoswipe": "4.1.3",
"rellax": "1.12.1",
"ritmo": "0.5.0",
"splitting": "1.0.6",
"swiper": "6.4.7"
}
}