cumstorm/package.json

34 lines
841 B
JSON
Raw Permalink Normal View History

2020-01-24 21:52:51 +01:00
{
"name": "cumstorm",
"version": "1.0.0",
"description": "a typescript gdps",
"main": "built/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2020-01-25 11:56:01 +01:00
"lint": "eslint src/*.ts",
2020-01-24 21:52:51 +01:00
"quickrun": "tsc && node built/index.js"
},
"keywords": [
"gdps",
"geometry-dash",
"gd",
"server"
],
"author": "oatmealine <krakaka088@gmail.com> (https://koyu.space/@oatmealine)",
"license": "MIT",
2020-01-25 15:31:14 +01:00
"repository": "https://gitlab.com/oatmealine/cumstorm/",
2020-01-24 21:52:51 +01:00
"dependencies": {
"chalk": "^3.0.0",
"express": "^4.17.1",
2020-01-24 22:57:59 +01:00
"mongodb": "^3.5.2",
2020-01-24 21:52:51 +01:00
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0"
}
}