This repository was archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.65 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.65 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
{
"name": "fuiz",
"version": "1.0.0",
"description": "a node program to host and share online quizzes",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"compile": "npm run build && npx browserify src/client/FuizClient.ts -v --debug -p tsify -o dist/client/client-bundle.js",
"watchify-client": "npx watchify src/client/FuizClient.ts -v --debug -p tsify -o dist/client/client-bundle.js",
"start-server": "npm run compile && node --require source-map-support/register dist/server/FuizServer.js",
"start": "npm run compile && node --require source-map-support/register dist/server/FuizServer.js",
"start-sudo": "npm run compile && sudo node --require source-map-support/register dist/server/FuizServer.js"
},
"author": "adhami3310 and BarishNamazov",
"devDependencies": {
"@braintree/sanitize-url": "^6.0.0",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/sanitize-html": "^2.6.2",
"assert": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"fs": "^0.0.1-security",
"http-status-codes": "^2.2.0",
"https": "^1.0.0",
"path": "^0.12.7",
"sanitize-html": "^2.7.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"typescript": "^4.7.2"
},
"dependencies": {
"body-parser": "^1.20.0",
"browserify": "^17.0.0",
"eslint": "^8.16.0",
"js-confetti": "^0.11.0",
"multer": "^1.4.4-lts.1",
"rimraf": "^3.0.2",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"source-map-support": "^0.5.21",
"tsify": "^5.0.4",
"watchify": "^4.0.0"
}
}