-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.09 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
{
"name": "valheim-skali",
"private": true,
"scripts": {
"dev": "next dev --port 4242",
"dev:ci": "NODE_ENV=test next dev -p 4243",
"build": "next build",
"start": "next start --port 4242",
"start:ci": "NODE_ENV=test next start --port 4243",
"lint": "next lint",
"format:w": "yarn prettier -w '**/*.{ts,tsx,yml,json,md}'",
"format:c": "yarn prettier -c '**/*.{ts,tsx,yml,json,md}'",
"storybook": "start-storybook -p 6006 -c storybook/config",
"build:storybook": "build-storybook -c storybook/config",
"chromatic": "chromatic --exit-zero-on-changes",
"cypress:open": "yarn dev:ci & cypress open -P ./tests/integration",
"cypress:open:ci": "NODE_ENV=test cypress open -P ./tests/integration",
"cypress:run": "yarn dev:ci & cypress run -P ./tests/integration",
"cypress:run:ci": "cypress run -P ./tests/integration",
"cypress:unit:open": "cypress open -P ./tests/unit",
"cypress:unit:run": "cypress run -P ./tests/unit"
},
"dependencies": {
"@chakra-ui/react": "^1.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@loadable/component": "^5.15.2",
"@next-auth/mongodb-adapter": "^0.0.2-next.285",
"@tanstack/react-query": "^4.1.3",
"@tanstack/react-query-devtools": "^4.0.10",
"axios": "^0.24.0",
"bson": "^4.6.0",
"framer-motion": "^4",
"lodash": "^4.17.21",
"luxon": "^2.3.1",
"mongodb": "^4.1.3",
"next": "12.1.4",
"next-auth": "4.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.4.0",
"react-intersection-observer": "^9.4.0",
"react-string-replace": "^1.1.0",
"sharp": "^0.30.4"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/storybook-addon": "^0.0.0-dev-2021119215843",
"@mdx-js/react": "^1.6.22",
"@next/eslint-plugin-next": "^12.3.1",
"@storybook/addon-a11y": "^6.4.9",
"@storybook/addon-docs": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@types/babel__core": "^7",
"@types/loadable__component": "^5",
"@types/lodash": "^4",
"@types/luxon": "^2",
"@types/mdx-js__react": "^1",
"@types/sharp": "^0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-loader": "^8.2.3",
"chromatic": "^6.3.3",
"cypress": "^9.6.0",
"dotenv": "^16.0.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.5",
"msw": "^0.39.2",
"msw-storybook-addon": "^1.6.1",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"storybook-addon-next-router": "^3.1.1",
"typescript": "^4.5.4"
},
"msw": {
"workerDirectory": "public"
}
}