-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "nacho-component-library",
"version": "0.0.8",
"private": true,
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/**/*.css dist/",
"build": "pnpm clean && pnpm run build:esm && pnpm copy-files",
"build:esm": "tsc",
"dev": "webpack --watch --mode=development -d source-map"
},
"peerDependencies": {
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.23.2",
"@types/lodash": "^4.17.13",
"@types/node": "^18.6.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"babel-loader": "^9.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"copyfiles": "^2.4.1",
"css-loader": "^6.8.1",
"eslint": "^9.15.0",
"lodash": "^4.17.21",
"react-bootstrap": "^2.10.5",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.1",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"bootstrap": "^5.3.3"
}
}