-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
{
"name": "ficbook_chat_server",
"version": "0.0.0",
"private": true,
"description": "Char server for ficbook users.",
"main": "index.js",
"scripts": {
"start": "babel-node src/server",
"db_init": "babel-node src/util/database.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Loty Gero <lotgyero@gmail.com>",
"license": "GPL-3.0+",
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"bufferutil": "^4.0.7",
"config": "^3.3.8",
"express": "^4.20.0",
"knex": "^2.4.0",
"mariadb": "^3.0.2",
"mysql": "^2.18.1",
"mysql2": "^3.9.8",
"orm": "^7.1.0",
"path": "^0.12.7",
"pg": "^8.8.0",
"sqlite3": "^5.1.5",
"utf-8-validate": "^5.0.10",
"uuid": "^9.0.0",
"webpack": "^5.94.0",
"winston": "^3.8.2",
"ws": "^8.17.1",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.27.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"jshint": "^2.13.6"
}
}