This repository was archived by the owner on Apr 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.86 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.86 KB
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": "@masonite/mdl-core",
"version": "1.0.0-alpha.3",
"repository": {
"type": "git",
"url": "https://github.com/masonitedoors/mdl-core.git"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Joseph Fusco",
"email": "hello@josephfus.co",
"url": "https://github.com/josephfusco"
}
],
"main": "index.js",
"scripts": {
"build": "npm run build:css && npm run build:css:min && npm run build:storybook",
"build:css": "cross-env NODE_ENV=production node-sass src/scss/mdl-core.scss dist/mdl-core.css --output-style expanded",
"build:css:min": "cross-env NODE_ENV=production node-sass src/scss/mdl-core.scss dist/mdl-core.min.css --output-style compressed",
"build:storybook": "cross-env NODE_ENV=production build-storybook -c .storybook",
"start": "npm run storybook",
"storybook": "start-storybook",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.css": "stylelint --fix",
"*.scss": "stylelint --syntax=scss --fix",
"package.json": "sort-package-json"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@masonite/eslint-config": "0.0.13",
"@masonite/stylelint-config": "^1.4.0",
"@storybook/addon-a11y": "^6.1.10",
"@storybook/addon-essentials": "^6.1.10",
"@storybook/html": "^6.1.10",
"babel-loader": "^8.0.6",
"chromatic": "^5.1.0",
"cross-env": "^7.0.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lint-staged": "^10.0.8",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"sass-true": "^5.0.0",
"sort-package-json": "^1.40.0",
"stylelint": "^13.2.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.14.2"
},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}