-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "chator",
"version": "1.0.0",
"description": "Ch@or: A little chat application =======",
"main": "server",
"scripts": {
"start": "./node_modules/.bin/nodemon server/server",
"initdb": "mysql -u root -p < initdb.sql",
"upgradedb-2019-02-01": "mysql -u root -p < upgrade-2019-02-01.sql",
"upgradedb-emoji": "mysql -u root -p < upgrade-utf8mb4.sql",
"lint": "eslint server webpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/portsoc/chator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/portsoc/chator/issues"
},
"homepage": "https://github.com/portsoc/chator#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-ws": "^4.0.0",
"mysql2": "^1.5.3",
"simple-google-openid": "^0.3.0",
"ws": "^6.2.1"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"nodemon": "^1.18.9",
"semistandard": "^13.0.1"
}
}