-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "remix-template-remix",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"start": "remix-serve build",
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css"
},
"dependencies": {
"@remix-run/node": "^1.6.4",
"@remix-run/react": "^1.6.4",
"@remix-run/serve": "^1.6.4",
"bcrypt": "^5.0.1",
"copy-to-clipboard": "^3.3.1",
"file-saver": "^2.0.5",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.10.0",
"node-forge": "^1.3.1",
"qrcode": "^1.5.0",
"react": "^17.0.2",
"react-colorful": "^5.5.1",
"react-dom": "^17.0.2",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.4.0",
"sharp": "^0.30.7",
"underscore.string": "^3.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@remix-run/dev": "^1.6.4",
"@remix-run/eslint-config": "^1.6.4",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.2",
"eslint": "^8.19.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.5"
},
"engines": {
"node": ">=14"
}
}