-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.05 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.05 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
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
{
"name": "confuzzle",
"version": "1.1.0",
"description": "multiplayer crosswords",
"engines": {
"node": "22.x"
},
"main": "server/index.js",
"scripts": {
"test": "jest",
"build": "parcel build client/index.html client/syntax.html client/privacy.html --no-source-maps --no-cache --no-content-hash",
"postbuild": "workbox injectManifest && workbox copyLibraries dist",
"develop": "NODE_ENV=development nodemon -e js,vue server/index.js",
"start": "node server/index.js"
},
"nodemonConfig": {
"watch": "server/*,client/*,node_modules/keen-ui/*,node_modules/vue-easy-dnd/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjkat/confuzzle.git"
},
"author": "Rowan Katekar",
"license": "MIT",
"bugs": {
"url": "https://github.com/rjkat/confuzzle/issues"
},
"homepage": "https://github.com/rjkat/confuzzle#readme",
"dependencies": {
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.17.12",
"@confuzzle/burrows-wheeler": "file:@confuzzle/burrows-wheeler",
"@confuzzle/confuz-crossword": "file:@confuzzle/confuz-crossword",
"@confuzzle/confuz-parser": "file:@confuzzle/confuz-parser",
"@confuzzle/ecoji-buffers": "file:@confuzzle/ecoji-buffers",
"@confuzzle/move-to-front": "file:@confuzzle/move-to-front",
"@confuzzle/puz-common": "file:@confuzzle/puz-common",
"@confuzzle/puz-crossword": "file:@confuzzle/puz-crossword",
"@confuzzle/puz-sharing": "file:@confuzzle/puz-sharing",
"@confuzzle/readpuz": "file:@confuzzle/readpuz",
"@confuzzle/writepuz": "file:@confuzzle/writepuz",
"@popperjs/core": "^2.5.4",
"@thi.ng/range-coder": "^1.0.64",
"aws-sdk": "^2.879.0",
"base64url": "^3.0.1",
"blissfuljs": "^1.0.6",
"compression": "^1.7.4",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"define-property": "^2.0.2",
"dompurify": "^3.1.5",
"emojisplosion": "^2.6.1",
"enolib": "^0.8.2",
"enotype": "^0.3.0",
"express": "^4.17.1",
"express-force-https": "^1.0.0",
"has-flag": "^4.0.0",
"https": "^1.0.0",
"human-readable-ids": "^1.0.4",
"iconv-lite": "^0.5.2",
"keen-ui": "^1.3.1",
"keycode-js": "^2.0.3",
"nanoid": "^3.1.22",
"node-fetch": "^2.6.7",
"normalize-url": "^4.5.1",
"parcel-plugin-inliner": "^1.0.16",
"prismjs": "^1.22.0",
"qrcode": "^1.4.4",
"readdirp": "^2.2.1",
"sass": "^1.30.0",
"sassybitwise": "^1.1.1",
"serve-favicon": "^2.5.0",
"socket.io": "^4.7.5",
"socket.io-client": "^3.0.4",
"supports-color": "^7.2.0",
"uniqid": "^5.2.0",
"vue": "^2.6.12",
"vue-easy-dnd": "^1.10.2",
"vue-responsive": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/types": "^7.17.12",
"@vue/component-compiler-utils": "^3.2.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^2.0.6",
"parcel": "^1.12.3",
"parcel-bundler": "^1.12.4",
"typescript": "^3.9.7",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.12",
"workbox-cli": "^6.0.2"
}
}