open-law/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2023-04-20 13:10:16 +00:00
{
"name": "static",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2023-05-09 14:16:13 +00:00
"js-watch": "webpack --config webpack.dev.js --watch",
"js": "webpack --config webpack.prod.js",
2023-05-09 13:59:51 +00:00
"css": "tailwindcss -i ./src/styles.css -o ./app/static/css/styles.css --minify",
"css-watch": "tailwindcss -i ./src/styles.css -o ./app/static/css/styles.css --watch"
2023-04-20 13:10:16 +00:00
},
"author": "",
"license": "ISC",
"dependencies": {
2023-06-19 09:49:51 +00:00
"@metamask/sdk": "^0.3.2",
2023-05-25 13:13:02 +00:00
"@types/lodash.debounce": "^4.0.7",
2023-05-29 13:10:38 +00:00
"@types/sortablejs": "^1.15.1",
2023-05-04 11:18:49 +00:00
"ethers": "5.5.3",
2023-05-09 14:16:13 +00:00
"flowbite": "^1.6.4",
2023-05-25 13:13:02 +00:00
"lodash.debounce": "^4.0.8",
2023-05-09 14:16:13 +00:00
"siwe": "1.0.0",
"tailwindcss": "^3.2.7"
2023-04-20 13:10:16 +00:00
},
"devDependencies": {
"css-loader": "^6.7.3",
"postcss": "^8.4.21",
"postcss-loader": "^7.2.4",
"postcss-preset-env": "^8.3.1",
2023-05-29 13:10:38 +00:00
"sortablejs": "^1.15.0",
2023-04-20 13:10:16 +00:00
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
2023-05-09 14:16:13 +00:00
"webpack-dev-server": "^4.13.2",
"webpack-merge": "^5.8.0"
2023-04-20 13:10:16 +00:00
}
}