-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.3 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
{
"name": "abra",
"version": "1.0.0",
"description": "Race against others in this new exciting typing game™! https://abra.fly.dev",
"keywords": [
"game",
"typing"
],
"main": "index.html",
"scripts": {
"build": "cd client && ./build.sh",
"watch": "npm-watch build"
},
"watch": {
"build": {
"patterns": [
"js",
"less",
"index.html"
],
"extensions": "js,less,html"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pineman/abra.git"
},
"type": "module",
"contributors": [
{
"name": "Diogo Almiro",
"email": "[email protected]",
"url": "http://diogoalmiro.com"
},
{
"name": "João Pinheiro",
"email": "[email protected]",
"url": "https://pineman.github.io"
},
{
"name": "Diogo Tito",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pineman/abra/issues"
},
"homepage": "https://github.com/pineman/abra#readme",
"devDependencies": {
"browserify": "17.0.0",
"html-minifier": "4.0.0",
"less": "4.1.2",
"less-plugin-clean-css": "1.5.1",
"npm-watch": "0.11.0"
},
"dependencies": {
"express": "4.18.1",
"express-ws": "5.0.2"
}
}