forked from konstructio/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.58 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "k1-console",
"version": "2.1.7",
"private": true,
"scripts": {
"check-types": "tsc -p tsconfig.json",
"dev": "next dev",
"build": "next build",
"build:start": "next start",
"start": "node server.js",
"lint": "next lint && eslint './**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix './**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write './**/*.{js,jsx,ts,tsx}' --config ./.prettierrc",
"test": "jest --silent",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watch",
"storybook": "STORYBOOK_MODE=true start-storybook -p 6006",
"storybook-production": "node .storybook/server.js",
"build-storybook": "build-storybook -o storybook-static"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.4",
"@mui/styles": "^5.11.2",
"@mui/x-data-grid": "^6.3.0",
"@next/font": "^13.0.2",
"@reduxjs/toolkit": "^1.9.3",
"@types/node": "18.11.9",
"@types/react-dom": "18.0.8",
"analytics-node": "^6.2.0",
"axios": "^1.3.3",
"axios-mock-adapter": "^1.21.4",
"babel-preset-next": "^1.4.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "13.0.3",
"next-redux-wrapper": "^8.0.0",
"posthog-node": "^2.6.0",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.7",
"react-icons": "^4.4.0",
"react-redux": "^8.0.5",
"reactflow": "^11.7.0",
"sharp": "^0.31.3",
"styled-components": "^5.3.5",
"styled-media-query": "^2.1.2",
"websocket": "^1.0.34",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-search": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@faker-js/faker": "^7.5.0",
"@mdx-js/react": "^2.2.1",
"@next/eslint-plugin-next": "^13.0.4",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack4": "^6.5.10",
"@storybook/manager-webpack4": "^6.5.13",
"@storybook/mdx2-csf": "^0.0.3",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/analytics-node": "^3.1.9",
"@types/react": "^18.0.24",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/styled-components": "^5.1.26",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.42.0",
"assert": "^2.0.0",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"eslint": "8.27.0",
"eslint-config-next": "13.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.7",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.2.2",
"prettier": "^2.7.1",
"process": "^0.11.10",
"storybook-addon-next-router": "^4.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16"
},
"resolutions": {
"styled-components": "^5"
},
"volta": {
"node": "16.15.1",
"yarn": "4.0.0-rc.40"
}
}