-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "polyflix-showcase",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export -o dist/",
"start": "next start",
"fix": "npm-run-all fix:*",
"fix:lint": "next lint --fix",
"fix:prettier": "prettier --write .",
"lint": "next lint",
"format:check": "prettier --check ."
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0",
"classnames": "^2.3.1",
"next": "12.0.7",
"npm-run-all": "^4.1.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"simple-react-lightbox": "^3.6.9-0"
},
"devDependencies": {
"@iconify/react": "^3.1.0",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@types/simple-react-lightbox": "^3.6.1",
"autoprefixer": "^10.4.0",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"postcss": "^8.2.15",
"prettier": "2.5.1",
"tailwindcss": "^3.0.1",
"typescript": "4.5.3"
}
}