-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "%%PROJECTNAME%%",
"version": "1.0.0",
"description": "",
"main": "gulpfile.js",
"scripts": {
"build": "NODE_ENV=production gulp build",
"start": "gulp"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/framecreative/",
"config": {
"assetSource": "site/content/themes/frame-custom/assets/",
"assetDist": "site/content/themes/frame-custom/built/",
"devUrl": "%%PROJECTNAME%%.dev",
"themeFolder": "site/content/themes/frame-custom"
},
"dependencies": {
"fastclick": "~1.0.6",
"include-media": "^1.4.9"
},
"devDependencies": {
"autoprefixer": "^7.0.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.18.8",
"cssnano": "^3.7.7",
"del": "^3.0.0",
"gulp": "^3.9.0",
"gulp-if": "^2.0.1",
"gulp-modernizr": "^1.0.0-alpha",
"gulp-postcss": "^7.0.0",
"gulp-rename": "^1.2.2",
"gulp-rev": "^8.0.0",
"gulp-sass": "^3.0.0",
"gulp-sass-glob": "^1.0.8",
"gulp-sourcemaps": "^2.6.0",
"gulp-svgmin": "^1.2.3",
"gulp-svgstore": "^6.1.0",
"gulp-util": "^3.0.6",
"lazypipe": "^1.0.1",
"node-notifier": "^5.1.2",
"run-sequence": "^2.1.0",
"ts-loader": "^2.0.3",
"typescript": "^2.3.2",
"vinyl-named-with-path": "^1.0.0",
"webpack": "^2.5.1",
"webpack-stream-fixed": "^3.2.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": false
}
},
"env": {
"browser": true,
"commonjs": true,
"jquery": true,
"es6": false
},
"globals": {
"jQuery": true,
"$": false
},
"rules": {
"no-console": "warn",
"no-mixed-spaces-and-tabs": [
"error",
"smart-tabs"
]
}
}
}