forked from 55minutes/css3-foundation
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 2.3 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
{
"name": "css3-foundation",
"version": "7.3.0",
"description": "A simple CSS3/HTML5 bootstrap for static sites and web apps",
"main": "index.html",
"repository": "[email protected]:ravasthi/css3-foundation.git",
"author": "Richa Avasthi <[email protected]>",
"license": "Apache-2.0",
"private": false,
"engines": {
"node": ">=8.5.0"
},
"devDependencies": {
"autoprefixer": "^10.3.4",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.2",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.2.2",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.1",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"prettier": "^2.0.5",
"reset-css": "^5.0.1",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.0.0",
"susy": "^3.0.7",
"url-loader": "^4.1.1",
"webpack": "^5.51.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0",
"webpack-merge": "^5.0.9"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.4.1",
"jquery": "^3.2.1"
},
"scripts": {
"clean-fonts": "rimraf distribution/*.eot distribution/*.svg distribution/*.ttf distribution/*.woff distribution/*.woff2",
"clean-extra": "rimraf distribution/scripts/ie.js distribution/scripts/print.js distribution/scripts/styles.js distribution/scripts/*.LICENSE.txt",
"lint:js": "eslint 'source/**/*.js' --config .eslintrc.js",
"lint:scss": "stylelint 'source/**/*.scss' --syntax scss --config stylelint.config.js",
"compile": "cross-env NODE_ENV=production webpack --config webpack.config.production.js",
"build": "run-s lint:js lint:scss compile clean-extra",
"start": "cross-env NODE_ENV=development webpack serve --config webpack.config.development.js"
}
}