-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.25 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
{
"name": "react-ts-sass-webpack5",
"version": "1.0.0",
"description": "A sample react project boilerplate, configured to use typescript, sass, and babel, using webpack 5",
"main": "src/index.js",
"scripts": {
"dev": "webpack serve",
"build": "webpack",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/BOOMHUNK/react-ibm-multiple-bundler-boilerplates.git"
},
"keywords": [
"react",
"ts",
"sass",
"webpack5"
],
"author": "BOOMHUNK",
"license": "ISC",
"bugs": {
"url": "https://github.com/BOOMHUNK/react-ibm-multiple-bundler-boilerplates/issues"
},
"homepage": "https://github.com/BOOMHUNK/react-ibm-multiple-bundler-boilerplates#readme",
"dependencies": {
"@carbon/ibm-products": "^2.3.2",
"@carbon/react": "^1.33.2",
"@types/carbon-components-react": "^7.55.2",
"carbon-for-ibm-cloud": "^0.1.4",
"eslint-config-standard": "^17.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^20.4.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"babel-loader": "^9.1.3",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"esbuild-loader": "^3.0.1",
"eslint": "^8.44.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"url-loader": "^4.1.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}