-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "bondroy-site",
"author": "",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production npm-run-all clean -p build:*",
"build:gulp": "gulp",
"build:11ty": "eleventy",
"disabled:build:dev": "eleventy --pathprefix=/bondroy/",
"clean": "rimraf dist",
"dev": "npm-run-all clean build:* -p dev:*",
"dev:gulp": "gulp watch",
"dev:11ty": "eleventy --serve",
"deploy": "npm run build && vercel ./dist --prod"
},
"dependencies": {
"@11ty/eleventy-img": "^0.8.3",
"image-size": "^0.9.7",
"liquidjs": "^6.4.3"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"autoprefixer": "^9.6.2",
"cross-env": "^6.0.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-foreach": "^0.1.0",
"gulp-insert": "^0.5.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-uglify": "^3.0.2",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}