-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.02 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
{
"name": "src",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"prettier": "prettier --write .",
"lint:css": "stylelint --ignore-path .gitignore '**/*.(css|tsx)'",
"prepare": "husky install",
"test": "jest --watchAll --coverage",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"axios": "^0.27.2",
"emotion-reset": "^3.0.1",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-fast-marquee": "^1.3.2",
"react-loading-skeleton": "^3.1.0",
"react-query": "^3.39.2",
"react-responsive": "9.0.0-beta.10",
"react-reveal": "^1.2.2",
"react-spinners": "^0.13.4",
"react-test-renderer": "^18.2.0",
"react-toastify": "^9.0.8",
"shortid": "^2.2.16"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.9",
"@emotion/babel-plugin": "^11.9.2",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^28.1.1",
"@types/node": "17.0.38",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.16.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": "^11.1.4",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.16",
"postcss-html": "^1.4.1",
"postcss-syntax": "^0.36.2",
"prettier": "^2.6.2",
"stylelint": "^14.8.5",
"stylelint-config-concentric-order": "^5.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-styled-components": "^0.1.1",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"typescript": "4.7.2",
"webpack": "^5.74.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"git add"
]
},
"*.+{json|css|md}": [
"eslint --fix",
"prettier --write",
"stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"git add"
]
}