forked from GravitateDesignStudio/blueprint-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.47 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "blueprint-theme",
"version": "3.1.0",
"description": "Blueprint Theme",
"scripts": {
"eslint": "npx eslint js/**/*.js",
"stylelint": "npx stylelint css/**/*.scss",
"build-css": "npx gulp build_scss",
"build-js": "npx gulp build_js",
"build": "npx gulp build",
"watch": "npx gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GravitateDesignStudio/blueprint-theme.git"
},
"author": "Gravitate Design Studio",
"license": "ISC",
"bugs": {
"url": "https://github.com/GravitateDesignStudio/blueprint-theme/issues"
},
"homepage": "https://github.com/GravitateDesignStudio/blueprint-theme#readme",
"dependencies": {
"@babel/runtime": "^7.10.1",
"foundation-sites": "^6.6.3",
"imagebuddy": "^1.1.1",
"intersection-observer": "^0.12.0",
"normalize.css": "^8.0.0",
"object-fit-images": "^3.2.4",
"swiper": "^6.4.1"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"caniuse-lite": "^1.0.30001066",
"chokidar": "^3.4.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-dart-sass": "^1.0.2",
"gulp-exec": "^5.0.0",
"gulp-load-plugins": "^2.0.3",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"hard-source-webpack-plugin": "^0.13.0",
"sass": "^1.32.11",
"stylelint": "^13.5.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"webpack": "^5.10.3",
"webpack-cli": "^4.2.0",
"webpack-stream": "^6.1.1"
},
"bundlerOptions": {
"babel": true
},
"browserslist": [
"last 2 versions",
"IE >= 11",
"not IE <= 10",
"not ie_mob <= 10"
],
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"jsxSingleQuote": false,
"printWidth": 100,
"trailingComma": "none",
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
}
]
}
}