-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) 路 3.02 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) 路 3.02 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
104
105
106
107
108
109
110
111
112
{
"name": "fluentui-react-grid",
"version": "1.0.0",
"description": "React components for Fluent UI layout styles",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/fluentui-react-grid.cjs.js",
"module": "lib/fluentui-react-grid.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "yarn prettier && yarn lint && yarn build",
"clean": "rimraf lib/*",
"build": "rollup -c",
"prebuild": "yarn clean",
"test": "jest --coverage",
"watch": "yarn build -- --watch",
"watch:test": "yarn test -- --watch",
"lint": "eslint 'src/**/*.{tsx,ts}' --fix",
"prettier": "prettier --write 'src/**/*.{tsx,ts}'",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/JB1905/fluentui-react-grid.git"
},
"keywords": [
"react",
"microsoft",
"components",
"library",
"ui",
"grid",
"layout",
"row",
"styles",
"fluent",
"col"
],
"bugs": {
"url": "https://github.com/JB1905/fluentui-react-grid/issues"
},
"homepage": "https://github.com/JB1905/fluentui-react-grid#readme",
"dependencies": {
"clsx": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"@storybook/addon-controls": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-storysource": "^6.5.9",
"@storybook/addon-viewport": "^6.5.9",
"@storybook/addons": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/storybook-deployer": "^2.8.11",
"@storybook/theming": "^6.5.9",
"@testing-library/react": "^12.1.5",
"@types/jest": "^28.1.2",
"@types/react": "^17.0.39",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"lint-staged": {
"src/**/*.{tsx,ts}": [
"yarn prettier",
"yarn lint"
]
}
}