-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
115 lines (115 loc) · 4.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "l4w",
"version": "0.9.0",
"description": "An engine + web editor for tile-based web games",
"main": "l4w-server",
"type": "module",
"scripts": {
"build": "grunt l4w-build-pipeline --gruntfile Gruntfile.cjs",
"start": "node dist/server/l4w-server.cjs",
"start-dev": "node --require=dotenv/config --inspect dist/server/l4w-server.cjs"
},
"dependencies": {
"bcryptjs": "2.4.3",
"compression": "1.7.4",
"connect-session-sequelize": "7.1.2",
"express": "4.17.1",
"express-session": "1.17.2",
"lowdb": "1.0.0",
"npm": "8.1.2",
"pg": "8.7.1",
"pg-hstore": "2.3.2",
"sequelize": "6.8.0",
"vue": "2.6.14"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"@types/bcryptjs": "2.4.2",
"@types/bluebird": "3.5.36",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/express-session": "1.17.4",
"@types/lowdb": "1.0.11",
"@types/pg": "8.6.1",
"@types/validator": "13.6.6",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"css-loader": "6.5.0",
"dotenv": "16.0.2",
"eslint": "8.1.0",
"eslint-plugin-jsdoc": "37.0.3",
"grunt": "1.4.1",
"grunt-babel": "8.0.0",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-uglify": "5.0.1",
"grunt-eslint": "24.0.0",
"grunt-webpack": "4.0.3",
"ts-loader": "9.2.6",
"typescript": "4.4.4",
"vue-loader": "15.9.8",
"vue-style-loader": "4.1.3",
"vue-template-compiler": "2.6.14",
"webpack": "5.61.0",
"webpack-node-externals": "3.0.0"
},
"dependenciesDocumentation": {
"bcryptjs": "required for hashing of emails",
"compression": "compression middleware for express, required for GZipping of textual responses",
"connect-session-sequelize": "session store for connect-session using sequelize",
"express": "web framework",
"express-session": "session middleware for express",
"lowdb": "JSON database",
"npm": "dependency manager for Javascript",
"pg": "PostgreSQL DB client",
"pg-hstore": "Required by sequelize/lib/dialects/postgres",
"sequelize": "ORM framework for Node.js. It is a CommonJS module, so importing can be tricky",
"vue": "FE framework"
},
"devDependenciesDocumentation": {
"@babel/core": "Babel compiler core",
"@babel/preset-env": "Babel preset for each environment",
"@types/bcryptjs": "TypeScript definitions for bcryptjs",
"@types/bluebird": "TypeScript definitions for Bluebird implementation of Promise. Required by sequelize",
"@types/compression": "TypeScript definitions for compression",
"@types/express": "TypeScript definitions for express",
"@types/express-session": "TypeScript definitions for express-session",
"@types/lowdb": "TypeScript definitions for lowdb 1 (not needed for 3)",
"@types/pg": "TypeScript definitions for pg",
"@types/validator": "TypeScript definitions for validator. Required by sequelize",
"@typescript-eslint/eslint-plugin": "TypeScript-specific rules for ESLint",
"@typescript-eslint/parser": "TypeScript parser for ESLint",
"css-loader": "CSS loader module for Webpack",
"dotenv": "Load env properties from .env file",
"eslint": "Linter for TypeScript code",
"eslint-plugin-jsdoc": "JSDoc linting rules for ESLint",
"grunt": "Task runner for build process",
"grunt-babel": "Grunt Plugin for Babel, a Javascript compilator to backward-compatible code",
"grunt-contrib-clean": "Grunt plugin for deleting files",
"grunt-contrib-uglify": "Grunt plugin for UglifyJS, a Javascript minimizer",
"grunt-eslint": "Grunt plugin for ESLint",
"grunt-webpack": "Grunt plugin for WebPack",
"ts-loader": "TypeScript loader for webpack",
"typescript": "TypeScript language",
"vue-loader": "Vue single-file component loader for Webpack",
"vue-style-loader": "Vue.js style loader module for Webpack",
"vue-template-compiler": "template compiler for Vue 2.0",
"webpack": "Javascript modules bundler",
"webpack-node-externals": "Required for compiling server with Webpack and avoid bundling all node modules"
},
"engines": {
"node": "18"
},
"repository": {
"type": "git",
"url": "https://github.com/giovannipessiva/l4w"
},
"bugs": {
"url": "https://github.com/giovannipessiva/l4w/issues"
},
"keywords": [
"game",
"rpg"
],
"license": "GPL-2.0"
}