-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.05 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
{
"name": "@grigorebudac/react-library-esbuild",
"description": "Sample React.js library with typescript and esbuild",
"author": "Grigore Budac",
"version": "1.0.0",
"license": "MIT",
"main": "./esm",
"module": "./cjs",
"browser": "./esm",
"typings": "./types",
"scripts": {
"start": "yarn watch",
"build": "rimraf dist && node scripts/esbuild.build.js && cp package.json dist",
"watch": "yarn build && node scripts/esbuild.watch.js",
"test": "jest",
"test:watch": "yarn test --watch",
"lint": "eslint src/**/* --ext ts,tsx",
"lint:fix": "yarn lint --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.{ts,tsx}' --write",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "7.18.10",
"@storybook/addon-actions": "6.5.10",
"@storybook/addon-essentials": "6.5.10",
"@storybook/addon-interactions": "6.5.10",
"@storybook/addon-links": "6.5.10",
"@storybook/builder-webpack4": "6.5.10",
"@storybook/manager-webpack4": "6.5.10",
"@storybook/react": "6.5.10",
"@storybook/testing-library": "0.0.13",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.6",
"@types/react": "18.0.15",
"@types/styled-components": "^5.1.25",
"@types/styled-system": "^5.1.15",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"babel-loader": "^8.2.5",
"esbuild": "0.14.53",
"esbuild-node-externals": "1.4.1",
"esbuild-plugin-d.ts": "1.1.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"glob": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"peerDependencies": {
"react": ">= 17",
"react-dom": ">= 17"
},
"dependencies": {
"styled-components": "^5.3.5",
"styled-system": "^5.1.5"
}
}