-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 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
{
"name": "floras-kitchen",
"private": true,
"version": "0.0.1",
"description": "Flora's Kitchen Official Website",
"main": "index.js",
"scripts": {
"analyze:tailwind-css-class-order": "rustywind --dry-run .",
"analyze": "npm run analyze:tailwind-css-class-order",
"fix:tailwind-css-class-order": "rustywind --write .",
"fix": "npm run fix:tailwind-css-class-order",
"dev": "next",
"build": "next build",
"export": "npm run build && next export",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dr5hn/floras-kitchen.git"
},
"author": "Darshan Gada",
"license": "MIT",
"bugs": {
"url": "https://github.com/dr5hn/floras-kitchen/issues"
},
"homepage": "https://github.com/dr5hn/floras-kitchen#readme",
"dependencies": {
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scratchcard": "^1.1.2",
"scratchcard-js": "^1.4.9",
"firebase": "^7.15.5",
"firebase-admin": "^8.12.1",
"js-cookie": "2.2.1",
"react-firebaseui": "4.1.0",
"swr": "0.2.3"
},
"devDependencies": {
"rustywind": "0.6.7",
"tailwindcss": "1.8.10"
}
}