-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.94 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
{
"name": "denali-css",
"version": "0.0.0-development",
"author": "Chas Turansky",
"description": "Denali CSS Framework",
"private": false,
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "npm run sass-watch & npm run storybook",
"sass-build": "sass --style=compressed --no-source-map scss/denali.scss:css/denali.css scss/denali-components.scss:css/denali-components.css scss/denali-helpers.scss:css/denali-helpers.css scss/denali-layouts.scss:css/denali-layouts.css scss/denali-dark-theme.scss:css/denali-dark-theme.css",
"sass-watch": "sass --watch --no-source-map scss/denali.scss:css/denali.css scss/denali-components.scss:css/denali-components.css scss/denali-helpers.scss:css/denali-helpers.css scss/denali-layouts.scss:css/denali-layouts.css scss/denali-dark-theme.scss:css/denali-dark-theme.css",
"test": "mocha",
"semantic-release": "semantic-release",
"storybook": "start-storybook -p 6006 -s .storybook/static",
"build-storybook": "build-storybook -s .storybook/static",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "npm run sass-build"
},
"repository": {
"type": "git",
"url": "[email protected]:denali-design/denali-css.git"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/html": "^6.1.21",
"@storybook/storybook-deployer": "^2.8.7",
"@whitespace/storybook-addon-html": "^4.2.0",
"babel-loader": "^8.2.2",
"mocha": "^7.2.0",
"react-is": "^16.13.1",
"sass": "^1.42.1",
"semantic-release": "^19.0.3"
},
"release": {
"repositoryUrl": "[email protected]:denali-design/denali-css.git"
},
"publishConfig": {
"access": "public"
},
"storybook-deployer": {
"gitUsername": "denali-bot",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook to GitHub Pages"
}
}