-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "remix-template-remix",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -i ./app/styles/index.css -o ./app/tailwind.css",
"start": "remix-serve build"
},
"dependencies": {
"@react-vant/icons": "^0.0.6",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"axios": "^0.27.2",
"bilibili-live-ws": "^6.2.0",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"douyu-danmu-ws": "^1.0.4",
"rc-danmaku": "^1.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-grid-layout": "^1.3.4",
"react-vant": "^2.0.0-alpha.36"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-grid-layout": "^1.3.2",
"eslint": "^8.11.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}