forked from SUSE/project-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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": "nextwind",
"version": "0.1.0",
"author": "en3sis",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next build && next start",
"export": "next export",
"static": "next build && next export",
"lint": "next lint",
"format": "npx prettier --write '**/*.tsx' '**/*.ts'"
},
"dependencies": {
"eslint-config-prettier": "^8.3.0",
"framer-motion": "^4.1.17",
"next": "^12.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-multi-carousel": "^2.8.2",
"react-paginate": "^8.0.2",
"react-player": "^2.9.0",
"zustand": "^3.5.8"
},
"devDependencies": {
"@types/node": "^16.6.1",
"@types/react": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"autoprefixer": "^10.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"postcss": "^8.3.6",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.4",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
}
}