-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.1 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
{
"name": "indy-content-browse-ui",
"version": "1.0.0",
"description": "The ui part of the indy content directory browsing function",
"main": "src/main/js/index.js",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"babel-loader": "^9.1.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"terser-webpack-plugin": "^5.4.0"
},
"scripts": {
"webpack": "node node_modules/webpack/bin/webpack.js",
"start": "webpack-dev-server --open --config ./webpack.dev.config.js",
"deploy": "cp ./src/main/html/* ./build/content-browse/",
"build": "npm run clean && npm run compile && npm run deploy",
"clean": "rm -rf ./build/*",
"compile": "webpack --config ./webpack.prod.config.js --progress"
}
}