generated from maxgfr/typescript-swc-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.17 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
{
"name": "typescript-react-lib-swc",
"version": "1.1.2",
"author": "maxgfr",
"license": "MIT",
"description": "A minimalist typescript swc starter for react",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/maxgfr/typescript-react-lib-swc.git"
},
"bugs": {
"url": "https://github.com/maxgfr/typescript-react-lib-swc/issues"
},
"homepage": "https://github.com/maxgfr/typescript-react-lib-swc#readme",
"files": [
"build"
],
"keywords": [
"boilerplate",
"typescript",
"swc",
"react",
"storybook",
"@testing-library"
],
"scripts": {
"dev": "nodemon",
"develop": "node -r @swc-node/register ./src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf build",
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -w -p tsconfig.build.json",
"build:swc": "swc ./src -d build",
"build:swc:watch": "swc ./src -d build -w",
"lint": "eslint ./src --ext .ts,.tsx",
"prettier": "prettier --write './src/**/*.{ts,js,json,tsx,jsx}'",
"storybook:start": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:deploy": "npm run storybook:build && gh-pages -d storybook-static",
"storybook:deploy:action": "npm run storybook:build && gh-pages -d storybook-static -u \"github-actions-bot <[email protected]>\"",
"release": "semantic-release"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack4": "^6.5.13",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.2.0",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.5.1",
"@swc/core": "1.9.3",
"@swc/jest": "0.2.37",
"@swc/plugin-styled-jsx": "^1.5.20",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "29.5.14",
"@types/node": "18.19.65",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-loader": "^9.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-storybook": "^0.11.0",
"gh-pages": "^5.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.3.0",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "3.0.2",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4"
}
}