-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.1 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
{
"name": "codequantum2022",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck"
},
"dependencies": {
"@emotion/cache": "11.9.3",
"@emotion/core": "11.0.0",
"@emotion/react": "11.9.3",
"@emotion/server": "11.4.0",
"@emotion/styled": "11.9.3",
"@mantine/core": "5.6.3",
"@mantine/dates": "5.6.3",
"@mantine/hooks": "5.6.3",
"@mantine/next": "5.6.3",
"@mantine/notifications": "5.6.3",
"@mantine/prism": "5.6.3",
"@next/bundle-analyzer": "12.1.4",
"@tabler/icons": "1.78.1",
"cookies-next": "2.0.4",
"dayjs": "1.11.0",
"mantine-datatable": "1.7.13",
"next": "12.1.5",
"prism-react-renderer": "1.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@next/eslint-plugin-next": "12.1.4",
"@storybook/react": "6.1.21",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"babel-loader": "8.2.4",
"eslint": "8.11.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "16.1.4",
"eslint-config-mantine": "1.1.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-storybook": "0.5.7",
"eslint-plugin-testing-library": "5.2.0",
"jest": "27.5.1",
"prettier": "2.6.2",
"storybook-addon-turbo-build": "1.1.0",
"storybook-dark-mode": "1.0.9",
"ts-jest": "27.1.4",
"typescript": "4.6.3"
}
}