-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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
{
"name": "vitals-scss",
"version": "0.8.4",
"description": "A minimalistic bundle of a few CSS/Sass tools for building modern, flexible websites: an improved normalize, shorthand stuff for flexbox and grid, and a fluid sizing function.",
"author": "Garrett Whitehorn",
"license": "MIT",
"homepage": "https://github.com/garrettw/vitals",
"bugs": "https://github.com/garrettw/vitals/issues",
"keywords": [
"sass",
"flexbox",
"grid",
"semantic",
"css",
"grid-layout",
"layout",
"modern",
"vitals",
"vitals-grid",
"scss",
"scss-library",
"sass-library",
"fluid"
],
"main": "scss/_vitals.scss",
"browser": "css/vitals.css",
"repository": {
"url": "https://github.com/garrettw/vitals",
"type": "git"
},
"files": [
"scss/*",
"css/*"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.0",
"postcss": "^7.0.0 || ^8.0.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.25.0",
"sass-loader": "^13.2.0",
"stylelint": "^16.0.0",
"stylelint-checkstyle-formatter": "^0.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"start": "npm run watch",
"build": "npm run development && npm run production",
"lint:css": "stylelint \"scss/**/*.css\" || exit 0",
"lint:css-checkstyle": "stylelint \"scss/**/*.css\" --custom-formatter ./node_modules/stylelint-checkstyle-formatter/index.js || exit 0"
},
"browserslist": [
"last 2 years and > 0.5% in US",
"last 2 years and > 0.5%",
"edge >= 88",
"safari >= 14",
"ios >= 14",
"Firefox ESR"
]
}