-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "@grigorebudac/react-library-esbuild",
"description": "Simple 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"
},
"devDependencies": {
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.6",
"@types/react": "18.0.15",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"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"
}
}