-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.86 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
{
"name": "react-tiniest-form",
"version": "1.1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "./browser/specific/main.js",
"keywords": [
"react",
"component",
"form",
"tiny",
"tiniest"
],
"author": "n0eyes <seyeon4199@gmail.com>",
"description": "the tiniest form",
"repository": {
"type": "git",
"url": "git+https://github.com/n0eyes/react-tiniest-form.git"
},
"bugs": {
"url": "https://github.com/n0eyes/react-tiniest-form/issues"
},
"homepage": "https://n0eyes.github.io/react-tiniest-form",
"license": "MIT",
"workspaces": [
"website"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"start:dev": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"start:prod": "yarn build:prod && serve -s dist",
"start:sb": "NODE_ENV=development storybook dev -p 6006",
"build:prod": "cross-env NODE_ENV=production webpack --progress --config config/webpack.prod.js",
"build:dev": "cross-env NODE_ENV=development STRICT_MODE=off webpack --progress --config config/webpack.dev.js",
"build-storybook": "sb build",
"test-sb": "test-storybook",
"test-jest": "jest --watch",
"prepare": "rm -rf dist && mkdir dist && tsc -p tsconfig.stories.json && tsc-alias -p tsconfig.stories.json"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.24",
"@storybook/blocks": "^7.0.24",
"@storybook/global": "^5.0.0",
"@storybook/jest": "^0.1.0",
"@storybook/preset-create-react-app": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-webpack5": "^7.0.24",
"@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest-plugin-context": "^2",
"@types/node": "^20.4.2",
"@types/prettier": "^2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/testing-library__jest-dom": "^5.14.8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"babel-loader": "^9.1.3",
"babel-preset-react-app": "^10.0.1",
"chromatic": "^9.0.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"husky": ">=7",
"jest": "^29.7.0",
"jest-playwright-preset": "^3.0.1",
"jest-plugin-context": "^2.9.0",
"lint-staged": ">=10",
"playwright": "^1.39.0",
"postcss": "^8.4.31",
"postcss-styled-syntax": "^0.5.0",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.24",
"style-loader": "^3.3.3",
"stylelint": "^15.10.1",
"stylelint-config-clean-order": "^5.0.1",
"stylelint-config-standard": "^34.0.0",
"terser-webpack-plugin": "^5.3.9",
"tsc-alias": "^1.8.8",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"packageManager": "yarn@4.0.1"
}