Lightcord/LightcordApi/package.json

44 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-06-10 16:16:33 +02:00
{
"name": "lightcordapi",
"version": "1.0.0",
"description": "Lightcord's scripting API",
"main": "js/main.js",
"scripts": {
"build": "webpack --progress --colors",
"watch": "webpack --progress --colors --watch",
"build-prod": "webpack --progress --colors --config prod.config.js",
"watch-prod": "webpack --progress --colors --watch --config prod.config.js",
2020-07-04 22:42:26 +02:00
"test": "echo \"Error: no test specified\" && exit 1",
2020-09-06 13:09:45 +02:00
"docs": "typedoc --out ./docs ./src --theme node_modules/eledoc/bin/default/ --sourcefile-url-map sourcefile-map.json"
2020-06-10 16:16:33 +02:00
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/bandagedbd__bdapi": "^0.2.2",
2020-08-06 22:48:13 +02:00
"@types/moment": "^2.13.0",
2020-06-10 16:16:33 +02:00
"@types/react": "^16.9.36",
2020-08-06 22:48:13 +02:00
"@types/react-datepicker": "^3.1.1",
2020-06-10 16:16:33 +02:00
"@types/react-dom": "^16.9.8",
"@types/uuid": "^8.0.0",
2020-06-10 16:16:33 +02:00
"babel-loader": "^8.0.6",
2020-08-06 22:48:13 +02:00
"date-fns": "^2.15.0",
2020-09-06 13:09:45 +02:00
"eledoc": "^0.2.1",
2020-08-06 22:48:13 +02:00
"emotion": "^10.0.27",
"react-datepicker": "^3.1.3",
2020-06-27 21:02:48 +02:00
"terser-webpack-plugin": "^3.0.6",
2020-06-10 16:16:33 +02:00
"ts-loader": "^7.0.5",
2020-07-04 22:42:26 +02:00
"typedoc": "^0.17.8",
2020-09-06 13:09:45 +02:00
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^3.9.5",
2020-06-27 21:02:48 +02:00
"uuid": "^8.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
2020-06-10 16:16:33 +02:00
},
2020-09-06 13:09:45 +02:00
"types": "./types/index.ts",
"private": true
2020-06-10 16:16:33 +02:00
}