-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
76 lines (76 loc) · 3.52 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
{
"name": "Emulsify UI Kit",
"version": "1.1.0",
"description": "Emulsify UI Kit is the default Emulsify system that include design token integration with Figma.",
"main": "index.js",
"type": "module",
"scripts": {
"a11y": "npm run storybook-build && node_modules/@emulsify/core/scripts/a11y.js -r",
"build": "webpack --config node_modules/@emulsify/core/config/webpack/webpack.prod.js",
"build-dev": "webpack --config node_modules/@emulsify/core/config/webpack/webpack.dev.js",
"coverage": "npm run test && open-cli .coverage/lcov-report/index.html",
"develop": "npm run build-dev && concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"format": "npm run lint-fix; npm run prettier-fix",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "lint-staged",
"lint": "npm run lint-js; npm run lint-styles",
"lint-fix": "npm run lint-js -- --fix; npm run lint-styles -- --fix",
"lint-js": "eslint --config ./config/emulsify-core/eslintrc.config.json --no-eslintrc --no-error-on-unmatched-pattern ./src",
"lint-staged": "lint-staged",
"lint-styles": "stylelint --config ./config/emulsify-core/stylelintrc.config.json './src/**/*.scss'",
"prettier": "prettier --config ./config/emulsify-core/prettierrc.config.json --ignore-path ./config/emulsify-core/.prettierignore --ignore-unknown \"./src/**/*.{js,yml,scss,md}\"",
"prettier-fix": "prettier --config ./config/emulsify-core/prettierrc.config.json --ignore-path ./config/emulsify-core/.prettierignore --write --ignore-unknown \"./src/**/*.{js,yml,scss,md}\"",
"semantic-release": "semantic-release",
"storybook": "storybook dev -c node_modules/@emulsify/core/.storybook --ci -p 6006",
"storybook-build": "npm run build && storybook build -c node_modules/@emulsify/core/.storybook -o .out",
"storybook-deploy": "storybook-to-ghpages -o .out",
"style-dictionary:build": "node ./src/tokens/tokensTransform.mjs",
"test": "jest --coverage --config ./config/jest.config.js",
"tokens:build": "npm run tokens:transform && npm run style-dictionary:build",
"tokens:transform": "token-transformer ./src/tokens/figma.tokens.json ./src/tokens/transformed.tokens.json",
"twatch": "jest --no-coverage --watch --verbose",
"visreg": "percy storybook http://localhost:6006",
"visreg-ci": "percy storybook .out",
"webpack": "webpack --watch --config node_modules/@emulsify/core/config/webpack/webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emulsify-ds/compound.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emulsify-ds/compound/issues"
},
"homepage": "https://github.com/emulsify-ds/compound#readme",
"lint-staged": {
"src/**/*.js": [
"npm run lint-js -- --fix"
],
"src/**/*.scss": [
"npm run lint-styles -- --fix"
],
"src/**/*.{js,scss}": [
"npm run prettier-fix"
]
},
"dependencies": {
"@emulsify/core": "^2.3.0",
"@percy/cli": "^1.30.1",
"@percy/storybook": "^6.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@storybook/storybook-deployer": "2.8.16",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"semantic-release": "^24.1.2"
}
}