-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.91 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
69
70
71
72
73
{
"name": "react-starter",
"version": "0.0.1",
"description": "Original boilerplate @ https://github.com/codesbiome/react-webpack-typescript-2022",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config ./config/webpack.config.dev.js",
"start:app": "cross-env NODE_ENV=development APP_PATH=./apps/App.tsx webpack serve --config ./config/webpack.config.dev.js",
"start:app2": "cross-env NODE_ENV=development APP_PATH=./apps/App2.tsx webpack serve --config ./config/webpack.config.dev.js",
"start:app3": "cross-env NODE_ENV=development APP_PATH=./apps/AppWithComposedHook.tsx webpack serve --config ./config/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.prod.js",
"serve": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.prod.js && cross-env serve public/",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@marshallofsound/webpack-asset-relocator-loader": "^0.5.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.8",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^6.5.15",
"@storybook/addon-links": "^6.5.15",
"@storybook/builder-webpack5": "^6.5.15",
"@storybook/manager-webpack5": "^6.5.15",
"@storybook/react": "^7.5.3",
"@storybook/testing-library": "^0.0.13",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.18.13",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@types/react-router": "^5.1.20",
"@types/styled-components": "^5.1.26",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.10",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"gsap": "^3.11.4",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "11.1.0",
"mini-css-extract-plugin": "^2.6.1",
"react-lorem-ipsum": "^1.4.10",
"react-refresh": "^0.14.0",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"serve": "^14.0.1",
"style-loader": "^3.3.1",
"ts-loader": "9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@types/gsap": "^3.0.0",
"@types/react-router-dom": "^5.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"typescript": "^5.0.2"
}
}