-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "aamatch",
"version": "0.1.0",
"description": "Advance Wars Reboot 1+2 matchmaking helper",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tailwind": "tailwindcss -i ./views/tailwind.css -o ./public/css/main.css",
"dev": "nodemon index.js",
"prod": "NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpenalbae/aamatch.git"
},
"keywords": [
"aa",
"matchmaking",
"match",
"advance",
"wars",
"advance wars"
],
"author": "Jaime Peñalba",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jpenalbae/aamatch/issues"
},
"homepage": "https://github.com/jpenalbae/aamatch#readme",
"devDependencies": {
"connect-livereload": "^0.6.1",
"livereload": "^0.9.3",
"nodemon": "^2.0.22",
"tailwindcss": "^3.3.2"
},
"dependencies": {
"cookie-session": "^2.0.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"lmdb": "^2.7.11",
"sib-api-v3-sdk": "^8.5.0",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0"
}
}