-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.29 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": "tap-app",
"version": "4.0.0",
"private": true,
"license": "UNLICENSED",
"description": "TAP's frontend",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"typecheck": "tsc --noEmit",
"typeycheck:watch": "yarn type-check -- --watch",
"start:ci": "INSECURE_AUTH=true yarn run start",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache --fix",
"lint": "next lint"
},
"dependencies": {
"@next/env": "^13.2.4",
"next": "^13.4.3",
"next-sitemap": "^4.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gtm-module": "^2.0.11",
"react-is": "^18.2.0",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/styled-components": "^5.1.26",
"eslint": "^8.37.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.7",
"typescript": "4.5.2"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
]
}