forked from Gyroscopic/atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "atlas",
"private": true,
"scripts": {
"build": "gulp build",
"build:preview": "gulp build-preview",
"start": "yarn run server",
"server": "gulp server",
"server:with-drafts": "gulp server:with-drafts",
"cms:delete": "gulp cms-delete"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/register": "^7.0.0-beta.47",
"browser-sync": "^2.23.7",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^8.0.0-beta.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.3.0",
"gulp-load-plugins": "^1.5.0",
"gulp-newer": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-print": "^2.0.1",
"gulp-sass": "^3.2.1",
"gulp-sass-lint": "^1.3.2",
"gulp-size": "^2.1.0",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^4.3.11",
"node-sass-tilde-importer": "^1.0.2",
"run-sequence": "^2.0.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}