-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
119 lines (119 loc) · 3.64 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
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
113
114
115
116
117
118
119
{
"name": "@gofynd/nitrozen-react",
"version": "2.0.9",
"description": "React component library inspired by Nitrozen",
"private": false,
"sideEffects": [
"**/*.scss",
"**/*.scss.js"
],
"scripts": {
"rollup": "rollup -c",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"storybook": "start-storybook -p 6006",
"build": "npm run svg:convert && npm run rollup",
"build-storybook": "build-storybook -o docs",
"eslint": "eslint --ext .tsx,.ts ./src -c .eslintrc.js",
"lint:check": "prettier --check .",
"lint:format": "prettier --write .",
"prepare": "husky install",
"svg:convert": "node iconTransformer",
"commit": "cz",
"release": "standard-version"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{css,scss,sass}": "stylelint --fix",
"**/*": "prettier -w -u"
},
"author": "Fynd Commerce",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@mdx-js/react": "^2.1.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@storybook/theming": "^6.5.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/dedent": "^0.7.0",
"@types/jest": "^29.0.3",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"autoprefixer": "^10.4.11",
"babel-jest": "^29.0.3",
"babel-loader": "^8.2.5",
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.2",
"commitizen": "^4.2.5",
"css-loader": "^6.7.1",
"cz-conventional-changelog": "^3.3.0",
"dedent": "^0.7.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"glob-promise": "^5.0.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"less": "^4.1.3",
"node-sass": "^7.0.3",
"path": "^0.12.7",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-img": "^1.1.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.9",
"markdown-to-jsx": "^7.1.8",
"sass-loader": "^13.0.2",
"standard-version": "^9.5.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": ">=0.14.0 <= 18",
"react-dom": ">=0.14.0 <= 18"
},
"main": "dist/cjs/src/index.js",
"module": "dist/esm/src/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}