-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.3 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"private": true,
"name": "@flowix/components",
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "git add . && git-cz --disable-emoji",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"new:package": "node scripts/new-package.js",
"release": "node scripts/release.js",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "stylelint 'packages/**/*.{ts,tsx}'",
"lint:js": "eslint --fix .storybook/ packages/ scripts --ext js,ts,tsx",
"format": "prettier -w --loglevel warn 'packages/**/*.{ts,tsx,js}'",
"test": "jest --config=configs/testing/jest.config.js --coverage",
"test:ci": "yarn lint && yarn format && yarn tsc && yarn test",
"make-coverage-badges": "istanbul-badges-readme --coverageDir=.coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint-staged": "lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Flowix-tech/components/issues"
},
"lint-staged": {
"**/*.{ts,tsx,js}": [
"bash -c tsc",
"yarn lint:js",
"prettier --write",
"git add ."
]
},
"homepage": "https://github.com/Flowix-tech/components#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/luxon": "^3.1.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-loader": "^8.3.0",
"commander": "^9.4.1",
"eslint": "^8.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-storybook": "^0.6.7",
"execa": "5.1.1",
"fs-extra": "^10.1.0",
"git-cz": "^4.9.0",
"handlebars": "^4.7.7",
"husky": "^8.0.2",
"istanbul-badges-readme": "^1.8.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"klaw": "^4.0.1",
"lerna": "^6.0.3",
"lint-staged": "^13.0.3",
"ora": "5.4.1",
"postcss": "^8.4.19",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.3.0",
"styled-components": "^5.3.6",
"stylelint": "^14.15.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-styled-components": "^0.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"luxon": "^3.1.0"
}
}