-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.47 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
62
63
64
65
66
67
68
69
{
"name": "karopapier",
"version": "0.2.0",
"description": "Karopapier, an online drawing tool for the creation of simple two-dimensional maps.",
"author": "Benedikt Magnus",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BenediktMagnus/Karopapier.git"
},
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"bcrypt": "5.0.1",
"better-sqlite3": "7.5.3",
"compression": "1.7.4",
"express": "4.18.2",
"socket.io": "4.5.4",
"socket.io-client": "4.5.4"
},
"devDependencies": {
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/bcrypt": "5.0.0",
"@types/better-sqlite3": "7.5.0",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/node": "14.18.21",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"chai": "4.3.6",
"esbuild": "0.14.47",
"eslint": "8.18.0",
"mocha": "10.0.0",
"nyc": "15.1.0",
"ts-node": "10.8.1",
"typescript": "4.7.4"
},
"files": [
"build",
"config",
"data",
"files",
"LICENSE",
"README.md"
],
"main": "build/backend/main.js",
"scripts": {
"build": "npm run build:debug",
"build:debug": "npm run build:debug:backend && npm run build:debug:frontend",
"build:debug:backend": "tsc --build src/backend/tsconfig.json",
"build:debug:frontend": "tsc --build src/frontend/tsconfig.json && node esbuild.js",
"build:release": "npm run build:release:backend && npm run build:release:frontend",
"build:release:backend": "tsc -p src/backend/tsconfig.release.json",
"build:release:frontend": "tsc -p src/frontend/tsconfig.release.json && node esbuild.release.js",
"clean": "rm -r build && rm -rf coverage",
"coverage": "npx nyc npm run test",
"coverage:text": "npx nyc --reporter=text npm run test",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd src/backend && npx eslint .",
"lint:frontend": "cd src/frontend && npx eslint .",
"prestart": "npm run build:debug",
"prepack": "npm run clean && npm run build:release",
"start": "node build/backend/main.js",
"test": "npx mocha -r ts-node/register/transpile-only 'tests/**/*.ts'"
},
"private": true
}