-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "tweet2image",
"version": "2.0.0",
"license": "MIT",
"devDependencies": {
"@remix-run/dev": "^1.2.3",
"@remix-run/eslint-config": "^1.2.3",
"@remix-run/serve": "^1.2.3",
"@types/react": "^17",
"@types/react-dom": "^17",
"@types/react-select": "^5.0.1",
"@types/request": "^2.48.8",
"autoprefixer": "^10.4.2",
"clsx": "^1.1.1",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"puppeteer": "^23.3.0",
"react-feather": "^2.0.9",
"react-select": "^5.6.0",
"react-toastify": "^9.1.1",
"tailwindcss": "^3.0.23",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@remix-run/react": "^1.2.3",
"@sparticuz/chromium": "^127.0.0",
"axios": "^0.26.0",
"koa": "^2.13.4",
"koa-router": "^12.0.0",
"node-fetch": "^2.7.0",
"puppeteer-core": "^23.3.0",
"react": "^17",
"react-dom": "^17",
"remix": "^1.2.3",
"request": "^2.88.2",
"timezones.json": "^1.6.1"
},
"scripts": {
"postinstall": "remix setup node",
"build": "pnpm build:css && cross-env NODE_ENV=production remix build",
"build:css": "tailwindcss -m -i ./styles/tailwind.css -o ./app/styles/tailwind.css",
"dev": "concurrently \"pnpm dev:css\" \"cross-env NODE_ENV=development remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/tailwind.css -o ./app/styles/tailwind.css"
},
"sideEffects": false
}