-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.28 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
{
"private": true,
"name": "funda-hs-content",
"version": "0.0.1",
"description": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"keywords": [],
"scripts": {
"build": "webpack --progress --mode production --config build/config-cjs.js && node build/config-esm.js && tsc --build tsconfig.json && node build/types.js && sass --no-source-map src/index.scss dist/css/index.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"funda-utils": "*"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.21.0",
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"babel-loader": "^8.0.4",
"css-loader": "^6.7.3",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"typescript": "4.7.4",
"webpack": "^5.47.1",
"webpack-cli": "^4.9.1"
}
}