-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.44 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": "rj-creatella-template",
"version": "1.0.0",
"description": "base template for creating react modules",
"main": "index.js",
"repository": "https://github.com/creatella/rj-creatella-template.git",
"author": "MohamedTebba <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-proposal-export-default-from": "^7.17.12",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-interactions": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack4": "^6.5.6",
"@storybook/manager-webpack4": "^6.5.6",
"@storybook/react": "^6.5.6",
"@storybook/testing-library": "^0.0.11",
"@typescript-eslint/parser": "^5.27.0",
"babel-loader": "^8.2.5",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"storybook-addon-sass-postcss": "^0.1.3",
"storybook-css-modules-preset": "^1.1.1",
"stylelint": "^14.8.5",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-standard": "^25.0.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"dependencies": {},
"scripts": {
"start::legacy": "set NODE_OPTIONS=--openssl-legacy-provider& start-storybook -p 6006",
"start": "start-storybook -p 6006",
"build": "build-storybook",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --list-different \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"**/*.mdx": [
"prettier --parser mdx --write"
]
}
}