This repository has been archived by the owner on Jun 12, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 2.03 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
{
"private": true,
"name": "share.io.server",
"version": "0.0.0",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"keywords": [],
"main": "src/app.ts",
"scripts": {
"build": "run-p build:ts build:templates",
"build:ts": "tsc --project tsconfig.json",
"build:templates": "node scripts/build.templates.js",
"start": "tsc && node dist/src/app.js",
"dev": "run-p dev:ts dev:templates",
"dev:ts": "ts-node-dev src/app.ts",
"dev:templates": "node scripts/watch.templates.js",
"lint:ts": "eslint src/**/*.{js,ts,tsx} html/**/*.{js,ts,tsx}",
"lint:ts:fix": "eslint src/**/*.{js,ts,tsx} html/**/*.{js,ts,tsx} --fix",
"lint:types": "tsc --project tsconfig.json --noEmit",
"lint:fix": "npm run lint:ts:fix && npm run lint:types",
"docker:push": "docker build . -t dotcafe/beam.cafe.backend && docker push dotcafe/beam.cafe.backend"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/joi": "^14.3.4",
"@types/node": "^14.14.9",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chokidar": "^3.4.2",
"clean-css": "^4.2.3",
"eslint": "^7.9.0",
"eslint-config-simon": "^2.1.0",
"eslint-plugin-align-import": "^1.0.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.28.2",
"rollup-plugin-terser": "^7.0.2",
"sassyfication": "^1.0.2",
"ts-node-dev": "^1.0.0-pre.56"
},
"dependencies": {
"joi": "^17.2.1",
"bowser": "^2.11.0",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"ejs": "^3.1.5",
"express": "^4.17.1",
"html-minifier": "^4.0.0",
"mime-types": "^2.1.27",
"pretty-bytes": "^5.4.1",
"typescript": "^4.0.3",
"ws": "^7.3.1"
}
}