-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.56 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
{
"name": "ag-frontend-boilerplate",
"version": "0.0.3",
"description": "A frontend boilerplate using Gulp as the task runner.",
"author": "Aaron George <aaron.dean.george@gmail.com>",
"license": "ISC",
"scripts": {
"serve": "npx gulp",
"serve:dev": "npx gulp --dev",
"serve:qa": "npx gulp --qa",
"serve:uat": "npx gulp --uat",
"serve:prod": "npx gulp --prod",
"build": "npx gulp build",
"build:dev": "npx gulp build --dev",
"build:qa": "npx gulp build --qa",
"build:uat": "npx gulp build --uat",
"build:prod": "npx gulp build --prod"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.3.0",
"@rollup/plugin-typescript": "^4.1.1",
"@types/browser-sync": "^2.26.1",
"@types/connect-history-api-fallback": "^1.3.3",
"@types/gulp": "^4.0.6",
"@types/gulp-if": "^0.0.33",
"@types/gulp-postcss": "^8.0.0",
"@types/gulp-rename": "^0.0.33",
"@types/gulp-sourcemaps": "^0.0.32",
"browser-sync": "^2.18.13",
"connect-history-api-fallback": "^1.4.0",
"del": "^5.1.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^7.0.1",
"gulp-flatmap": "^1.0.0",
"gulp-if": "^3.0.0",
"gulp-postcss": "^8.0.0",
"gulp-pug": "^4.0.1",
"gulp-purgecss": "^1.2.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.1",
"postcss-current-selector": "^0.0.3",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"rollup": "^2.9.1",
"tailwindcss": "^1.1.4",
"tslib": "^1.11.2",
"typescript": "^3.7.3"
}
}