forked from nikolav/wine-app.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "app",
"version": "0.1.2",
"private": true,
"engines": {
"node": "^16.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"dev": "yarn run sass:globals:watch && yarn run watch:css && next dev",
"build": "yarn run sass:globals && yarn run build:css && next build",
"build:export": "next build && next export",
"start": "next start",
"lint": "next lint",
"test:unit": "jest unit.test.js --watch",
"build:css": "tailwindcss -i ./src/tailwind.css -o ./styles/build.css",
"watch:css": "tailwindcss -i ./src/tailwind.css -o ./styles/build.css --watch",
"sass:globals": "sass ./src/styles-globals.scss ./styles/styles-globals.css ",
"sass:globals:watch": "sass ./src/styles-globals.scss ./styles/styles-globals.css --watch "
},
"dependencies": {
"@fancyapps/ui": "^4.0.26",
"@feathersjs/client": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"@feathersjs/socketio-client": "^4.5.11",
"@headlessui/react": "^1.5.0",
"@popperjs/core": "^2.11.5",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.2",
"animate.css": "^4.1.1",
"axios": "^0.26.1",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"escape-html": "^1.0.3",
"firebase": "^9.8.3",
"framer-motion": "^6.2.8",
"jest": "^27.5.1",
"md5": "^2.3.0",
"next": "12.1.4",
"next-auth": "^4.5.0",
"nikolav-q": "^1.1.4",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-icons": "^4.3.1",
"react-loader-spinner": "^6.0.0-0",
"react-popper": "^2.3.0",
"react-query": "^3.34.19",
"react-share": "^4.4.0",
"slate": "^0.78.0",
"slate-react": "^0.79.0",
"socket.io-client": "^2.4.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.0",
"autoprefixer": "^10.4.5",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"html5-boilerplate": "^8.0.0",
"postcss": "^8.4.13",
"sass": "^1.52.3",
"tailwindcss": "^3.0.24"
}
}