survey/package.json

40 lines
1.2 KiB
JSON
Raw Normal View History

2021-10-04 21:21:10 +05:30
{
"name": "mcaptcha-survey",
"main": "index.js",
"version": "1.0.0",
"scripts": {
"build": "webpack --mode production",
2021-10-27 11:39:37 +05:30
"lint": "eslint templates",
"sass": "dart-sass -s compressed templates/main.scss ./static/cache/bundle/css/main.css && dart-sass -s compressed templates/mobile.scss ./static/cache/bundle/css/mobile.css",
2021-10-04 21:21:10 +05:30
"start": "webpack-dev-server --mode development --progress --color",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/jsdom": "^21.0.0",
2024-06-08 18:35:35 +05:30
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
2021-10-12 14:54:51 +05:30
"dart-sass": "^1.25.0",
"eslint": "^9.0.0",
"jest": "^29.0.0",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^24.0.0",
"sinon": "^18.0.0",
"ts-jest": "^29.0.0",
2021-10-13 13:22:42 +05:30
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"typescript": "^5.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.0"
},
"dependencies": {
2023-01-08 23:02:49 +05:30
"@mcaptcha/vanilla-glue": "^0.1.0-alpha-3",
"@mcaptcha/pow_sha256-polyfill": "^0.1.0-alpha-1",
"@mcaptcha/pow-wasm": "^0.1.0-alpha-1"
2021-10-04 21:21:10 +05:30
}
}