This repository was archived by the owner on Jan 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "react-date-painter",
"version": "0.0.0",
"repository": "git@github.com:Yuta07/react-date-painter.git",
"author": "yutaka.miyazaki <mono.12dev@gmail.com>",
"private": true,
"workspaces": [
"react-date-painter"
],
"license": "MIT",
"scripts": {
"lint": "eslint 'react-date-painter/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'react-date-painter/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier 'react-date-painter/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write 'react-date-painter/**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install",
"lint-staged": "lint-staged",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token=206618650e15",
"build": "yarn workspace react-date-painter run build",
"test": "yarn workspace react-date-painter run test"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@types/node": "^16.7.10",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-loader": "^8.2.2",
"chromatic": "^5.9.2",
"dayjs": "^1.10.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.2"
},
"lint-staged": {
"react-date-painter/**/*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"yarn prettier:fix"
]
},
"dependencies": {},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}