-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.55 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
{
"name": "refri-webview",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"svgr": "npx @svgr/cli -d src/components/icons --ignore-existing --icon --typescript public/icons",
"build:analyze": "ANALYZE=true npm run build",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"test": "jest -c test/jest.config.js"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.3",
"@next/bundle-analyzer": "^10.2.3",
"antd-mobile": "^5.11.0",
"antd-mobile-icons": "^0.2.2",
"axios": "^0.21.4",
"next": "12.0.7",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.38.0",
"react-use": "^15.3.8",
"styled-components": "^5.3.5",
"styled-system": "^5.1.5",
"zustand": "^3.7.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.22",
"@svgr/cli": "^5.5.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^5.1.3",
"@types/jest": "^27.4.1",
"@types/node": "^14.18.16",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.16",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^1.13.3",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"next-transpile-modules": "^9.0.0",
"nock": "^13.2.4",
"storybook-addon-styled-component-theme": "^1.3.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint -- --quiet --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}