-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.8 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
95
{
"name": "solutions-starter-kit-basic",
"author": "Domagoj-Mario Mendas",
"description": "A basic starter/boilerplate powered by Webpack",
"version": "1.0.0",
"keywords": [
"node",
"javascript",
"webpack",
"babel",
"postcss",
"stylelint",
"eslint",
"gulp",
"sprites",
"modernizr",
"ES6+",
"lodash",
"ramda"
],
"repository": "https://github.com/wwwsolutions/solutions-starter-kit-basic",
"private": true,
"license": "Apache-2.0",
"scripts": {
"gulp": "./node_modules/gulp/bin/gulp.js",
"gulp:sprites": "gulp sprites-generator",
"gulp:modernizr": "gulp modernizr-generator",
"dev": "webpack-dev-server",
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"core-js": "^3.6.5",
"lazysizes": "^5.2.2",
"lodash": "^4.17.20",
"normalize.css": "^8.0.1",
"ramda": "^0.27.1",
"@fortawesome/fontawesome-free": "^5.15.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"autoprefixer": "^9.8.6",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.1.0",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"cssnano": "^4.1.10",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-modernizr": "^4.0.1",
"gulp-rename": "^2.0.0",
"gulp-svg-sprite": "^1.5.0",
"gulp-svg2png": "^2.0.2",
"html-webpack-plugin": "^3.2.0",
"jsdom-quokka-plugin": "^1.0.16",
"mini-css-extract-plugin": "^0.8.2",
"picturefill": "^3.0.3",
"postcss-at-rules-variables": "^0.1.10",
"postcss-color-mod-function": "^3.0.3",
"postcss-conditionals": "^2.1.0",
"postcss-css-variables": "^0.17.0",
"postcss-each": "^0.10.0",
"postcss-for": "^2.1.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-math": "0.0.10",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.3",
"postcss-simple-vars": "^5.0.2",
"style-loader": "^1.3.0",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"utf-8-validate": "^5.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}