2022-04-19 12:21:37 +02:00
|
|
|
{
|
|
|
|
"name": "apexie-website",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "The official Apexie Community website, made in TypeScript with Webpack.",
|
|
|
|
"main": "src/index.ts",
|
|
|
|
"scripts": {
|
|
|
|
"build": "webpack",
|
2022-05-15 09:26:46 +02:00
|
|
|
"predeploy": "npm run build",
|
2022-05-15 09:31:49 +02:00
|
|
|
"deploy": "gh-pages -d dist",
|
2022-04-19 12:21:37 +02:00
|
|
|
"dev": "webpack serve --open --mode=development",
|
|
|
|
"start": "http-server -p 3000",
|
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/ApexieCommunity/Website.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"typescript",
|
|
|
|
"webpack",
|
|
|
|
"github-pages",
|
|
|
|
"apexie",
|
|
|
|
"apexie-community"
|
|
|
|
],
|
|
|
|
"author": "ItzLightyHD",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/ApexieCommunity/Website/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/ApexieCommunity/Website#readme",
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/lodash": "^4.14.181",
|
|
|
|
"copy-webpack-plugin": "^10.2.4",
|
2022-05-15 09:26:46 +02:00
|
|
|
"gh-pages": "^4.0.0",
|
2022-04-19 12:21:37 +02:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
|
|
|
"http-server": "^14.1.0",
|
|
|
|
"ts-loader": "^9.2.8",
|
|
|
|
"typescript": "^4.6.3",
|
|
|
|
"webpack": "^5.72.0",
|
|
|
|
"webpack-cli": "^4.9.2",
|
|
|
|
"webpack-dev-server": "^4.8.1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"jquery": "^3.6.0",
|
|
|
|
"lodash": "^4.17.21"
|
|
|
|
}
|
|
|
|
}
|