-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.34 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:check": "gts lint",
"lint:fix": "gts fix",
"docker:build": "docker build -t sandbox-wcs-api:latest . -f Dockerfile",
"docker:up:api": "docker-compose up -d sandbox-wcs-api --build --force-recreate",
"docker:down": "docker-compose down --rmi all"
},
"resolutions": {
"styled-components": "^5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.8.6",
"@types/node": "18.11.18",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/uuid": "^9.0.0",
"next": "13.5.6",
"node-polyglot": "^2.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-polyglot": "^0.7.2",
"react-redux": "^8.0.4",
"styled-components": "^5.3.6",
"typescript": "4.8.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"autoprefixer": "^10.4.13",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.24.0",
"eslint-config-next": "13.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"gts": "^4.0.0",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4"
},
"prettier": "gts/.prettierrc.json",
"eslintConfig": {
"extends": [
"./node_modules/gts/",
"next",
"next/core-web-vitals"
],
"plugins": [
"simple-import-sort"
],
"rules": {
"node/no-unpublished-import": 0,
"simple-import-sort/exports": "error",
"simple-import-sort/imports": "error",
"@typescript-eslint/no-duplicate-imports": "error",
"@typescript-eslint/no-unused-vars": [
"error"
],
"max-classes-per-file": [
"error",
1
]
},
"ignorePatterns": [
"node_modules/",
"coverage*/",
"out/",
".next/",
"*.js"
]
}
}