-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "inpost-qr-generator",
"description": "Website for generating QR codes for InPost parcel lockers",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev:remix": "remix dev",
"dev": "concurrently \"npm:dev:css\" \"npm:dev:remix\"",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@remix-run/node": "^1.4.0",
"@remix-run/react": "^1.4.0",
"@remix-run/vercel": "^1.4.0",
"@vercel/node": "^1.14.0",
"qrcode.react": "^3.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@remix-run/dev": "^1.4.0",
"@remix-run/eslint-config": "^1.4.0",
"@remix-run/serve": "^1.4.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.4",
"concurrently": "^7.1.0",
"eslint": "^8.11.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}