tweb-i2p/package.json

77 lines
2.6 KiB
JSON
Raw Normal View History

2020-02-06 15:43:07 +00:00
{
"name": "tweb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --max-old-space-size=12048 node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.dev.js",
"start:production": "webpack-dev-server --config webpack.prod.js",
"serve": "npm run build; node server.js",
2020-02-06 15:43:07 +00:00
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
2020-02-06 15:43:07 +00:00
"test": "jest --config=jest.config.js",
"profile": "webpack --profile --json > stats.json --config webpack.prod.js",
"profile:dev": "webpack --profile --json > stats.json --config webpack.dev.js",
"whybundled": "npm run profile && whybundled stats.json",
"generate-mtproto-types": "node ./src/scripts/generate_mtproto_types.js src/"
2020-02-06 15:43:07 +00:00
},
"author": "",
2021-04-08 15:51:49 +00:00
"license": "GPL-3.0-only",
2020-02-06 15:43:07 +00:00
"dependencies": {
2021-02-12 15:24:20 +00:00
"webpack-dev-server": "^3.11.2"
2020-02-06 15:43:07 +00:00
},
"devDependencies": {
2021-05-12 22:32:04 +00:00
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-typescript": "^7.13.0",
2020-12-29 08:08:50 +00:00
"@babel/polyfill": "^7.12.1",
2021-05-12 22:32:04 +00:00
"@babel/preset-env": "^7.14.2",
2020-12-29 08:08:50 +00:00
"@babel/preset-es2015": "^7.0.0-beta.53",
2021-05-12 22:32:04 +00:00
"@babel/preset-typescript": "^7.13.0",
"@cryptography/aes": "^0.1.1",
2021-05-12 22:32:04 +00:00
"@cryptography/sha1": "^0.2.0",
2020-04-14 15:46:31 +00:00
"@cryptography/sha256": "^0.2.0",
2021-05-12 22:32:04 +00:00
"@peculiar/webcrypto": "^1.1.7",
"@types/chrome": "0.0.139",
"@types/jest": "^26.0.23",
"@types/serviceworker-webpack-plugin": "^1.0.2",
2021-02-12 15:24:20 +00:00
"autoprefixer": "^9.8.6",
2021-05-12 22:32:04 +00:00
"babel-jest": "^26.6.3",
2021-02-12 15:24:20 +00:00
"babel-loader": "^8.2.2",
2020-12-29 08:08:50 +00:00
"babel-preset-es2015": "^6.24.1",
2020-04-14 15:46:31 +00:00
"compression": "^1.7.4",
2021-02-12 15:24:20 +00:00
"css-loader": "^3.6.0",
2020-04-14 15:46:31 +00:00
"express": "^4.17.1",
2021-05-12 22:32:04 +00:00
"fast-png": "^5.0.4",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.1",
2021-05-12 22:32:04 +00:00
"html-webpack-plugin": "^4.5.2",
"ifdef-loader": "^2.3.0",
"jest": "^26.6.3",
2021-02-12 15:24:20 +00:00
"media-query-plugin": "^1.4.0",
"mini-css-extract-plugin": "^0.9.0",
2021-05-12 22:32:04 +00:00
"npm": "^7.12.1",
2020-02-06 15:43:07 +00:00
"on-build-webpack": "^0.1.0",
2021-02-12 15:24:20 +00:00
"optimize-css-assets-webpack-plugin": "^5.0.4",
2021-05-12 22:32:04 +00:00
"pako": "^2.0.3",
"postcss": "^8.2.10",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
2021-02-12 15:24:20 +00:00
"qr-code-styling": "^1.3.4",
2021-05-12 22:32:04 +00:00
"sass": "^1.32.13",
2020-04-14 15:46:31 +00:00
"sass-loader": "^8.0.2",
"serviceworker-webpack-plugin": "^1.0.1",
2021-02-12 15:24:20 +00:00
"style-loader": "^1.3.0",
"text-encoding": "^0.7.0",
2021-05-12 22:32:04 +00:00
"ts-jest": "^26.5.6",
"ts-loader": "^8.2.0",
"typescript": "^4.2.4",
2021-02-12 15:24:20 +00:00
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
2020-02-06 15:43:07 +00:00
"webpack-merge": "^4.2.2",
2021-06-14 17:05:09 +00:00
"webpack-retry-chunk-load-plugin": "^1.5.0",
2021-05-12 22:32:04 +00:00
"worker-loader": "^3.0.8"
2020-02-06 15:43:07 +00:00
}
}