-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.58 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
93
94
95
{
"name": "chatsounds-web",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"chatsounds-web": "./dist-node/discord-embed-proxy.js"
},
"scripts": {
"start": "cd web && node --loader ts-node/esm discord-embed-proxy.ts",
"dev": "npm run build:js dev",
"build": "cd web && npm run check && concurrently --raw \"cross-env NODE_ENV=production npm run build:js\" \"cross-env NODE_ENV=production npm run build:node\"",
"build:dev": "cd web && concurrently --raw \"cross-env NODE_ENV=development npm run build:js\" \"cross-env NODE_ENV=development npm run build:node\"",
"build:js": "rimraf dist && cd web && node --loader ts-node/esm build.ts",
"build:node": "rimraf dist-node && cd web && node --loader ts-node/esm build-node.ts",
"build:wasm": "cross-env RUST_LOG=info wasm-pack -vvvv build --target web",
"check": "cd web && concurrently --raw \"npm run typecheck\" \"npm run lint\"",
"test": "start-server-and-test start http://localhost:8080 test:js",
"test:js": "cd web && jest --config jest.config.ts",
"typecheck": "cd web && tsc --noEmit",
"format": "cd web && prettier --write --ignore-path ../.gitignore .",
"lint": "cd web && concurrently --raw \"prettier --check --ignore-path ../.gitignore .\" \"eslint --ignore-path ../.gitignore .\""
},
"dependencies": {
"@types/async-lock": "^1.4.2",
"@types/express": "^4.17.21",
"@types/memoizee": "^0.4.11",
"@types/node": "^20.17.9",
"async-lock": "^1.4.1",
"execa": "^9.5.1",
"express": "^4.21.2",
"memoizee": "^0.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@blueprintjs/core": "^5.16.0",
"@blueprintjs/eslint-plugin": "^6.1.5",
"@blueprintjs/select": "^5.3.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/can-autoplay": "^3.0.5",
"@types/eslint": "^8.56.12",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/jest-image-snapshot": "^6.4.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-refresh": "^0.14.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.18.0",
"can-autoplay": "^3.0.2",
"chatsounds-web": "./pkg",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"glob": "^11.0.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.4.0",
"lodash.debounce": "^4.0.8",
"normalize.css": "^8.0.1",
"prettier": "^3.4.2",
"puppeteer": "^23.10.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-refresh": "^0.14.2",
"react-refresh-typescript": "^2.0.9",
"react-use": "^17.5.1",
"rimraf": "^6.0.1",
"start-server-and-test": "^2.0.9",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"tslint": "^6.1.3",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}