forked from vacp2p/research.logos.co
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 885 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 885 Bytes
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
{
"name": "vac.dev",
"version": "1.0.0",
"license": "Apache-2.0",
"main": "gulpfile.babel.js",
"devDependencies": {
"autoprefixer": "10.3.1",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"browser-sync": "2.27.5",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"cssnano": "5.0.7",
"gulp": "4.0.2",
"gulp-imagemin": "^7.1.0",
"gulp-postcss": "9.0.0",
"postcss": "8.3.6",
"postcss-import": "14.0.2",
"tailwindcss": "^2.2.7"
},
"scripts": {
"build:production": "cross-env NODE_ENV=production gulp",
"build:dev": "cross-env NODE_ENV=development gulp",
"build": "yarn run build:production",
"dev": "cross-env NODE_ENV=development gulp serve",
"start": "yarn run dev",
"clean": "git clean -fdx",
"deploy": "node scripts/deploy.js"
},
"dependencies": {
"gh-pages": "^3.2.3"
}
}