-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "next-poc",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev -p 4000",
"lint": "next lint",
"start": "next start -p 4000"
},
"dependencies": {
"@tanstack/react-query": "^4.7.2",
"@vanilla-extract/css": "^1.11.1",
"@vanilla-extract/sprinkles": "^1.6.0",
"classnames": "^2.3.2",
"eslint": "8.42.0",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"next": "13.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^6.0.0-rc.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/http-proxy": "^1.17.11",
"@types/lodash": "^4.14.195",
"@types/node": "20.2.5",
"@types/react": "18.2.9",
"@types/react-dom": "18.2.4",
"@types/styled-components": "^5.1.26",
"@vanilla-extract/next-plugin": "^2.1.3",
"eslint-config-next": "13.4.4",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"typescript": "5.1.3"
}
}