-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "boochat",
"version": "0.0.1",
"dependencies": {
"@prisma/client": "^3.8.1",
"@sveltejs/adapter-node": "^1.0.0-next.67",
"@sveltejs/kit": "^1.0.0-next.251",
"@swc/core": "^1.2.135",
"@swc/helpers": "^0.3.2",
"ajv": "^8.9.0",
"array-shuffle": "^3.0.0",
"chalk": "^5.0.0",
"conf": "^10.1.1",
"cors": "^2.8.5",
"debug": "^4.3.3",
"express": "^4.17.2",
"nanoid": "^3.2.0",
"node-fetch": "^3.2.0",
"nodemon": "^2.0.15",
"p4ssw0rd": "^1.0.7",
"prisma": "^3.8.1",
"sanitize.css": "~12.0.1",
"sass": "^1.49.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"svelte": "^3.46.3",
"svelte-preprocess": "^4.10.2",
"svelte-tenor": "^0.0.15",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"tslib": "^2.3.1",
"twemoji": "^13.1.0",
"typed-emitter": "^2.1.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.13",
"@types/twemoji": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-config-xo-typescript": "^0.49.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.4.0",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"postcss-html": "^1.3.0",
"prettier": "^2.5.1",
"prettier-plugin-jsdoc": "^0.3.30",
"prettier-plugin-svelte": "^2.6.0",
"standard-version": "^9.3.2",
"stylelint": "^14.3.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"svelte-check": "^2.4.0"
},
"lint-staged": {
"*.{js,ts,svelte}": "eslint --fix",
"*.{css,scss,svelte}": "stylelint --fix",
"*.{js,cjs,ts,css,scss,html,svelte,json,md,yml}": "prettier --write"
},
"packageManager": "[email protected]",
"prisma": {
"seed": "yarn ts-node prisma/seed.ts"
},
"scripts": {
"build": "svelte-kit build",
"check": "tsc --noEmit & eslint --fix 'src/**/*.{ts,js,svelte}' & stylelint --fix 'src/**/*.{css,scss,svelte}' & svelte-check --tsconfig ./tsconfig.json &",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"clean": "rm -rf .svelte-kit/ build/",
"dev": "nodemon -e ts & svelte-kit dev --host &",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. src",
"postinstall": "husky install",
"start": "yarn ts-node src/server.ts",
"ts-node": "node --experimental-specifier-resolution=node --loader ./loader.js"
},
"type": "module",
"volta": {
"node": "17.4.0",
"yarn": "1.22.17"
}
}