forked from sopt-makers/sopt.org-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.69 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.69 KB
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
{
"name": "sopt.org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"format": "eslint --ignore-path .gitignore --fix . && prettier . --write",
"test": "jest --watchAll --coverage",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@types/qs": "6.9.7",
"axios": "^0.27.2",
"classcat": "^5.0.4",
"nanoid": "4.0.2",
"next": "13.3.0",
"qs": "6.11.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.2",
"react-responsive": "9.0.0-beta.10",
"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",
"@svgr/webpack": "^6.5.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",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^28.1.1",
"@types/nanoid": "^3.0.0",
"@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",
"await-to-js": "^3.0.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": "13.3.0",
"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",
"git-cz": "^4.9.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",
"sass": "^1.55.0",
"ts-jest": "^28.0.4",
"ts-loader": "^9.3.0",
"ts-pattern": "^4.0.5",
"typescript": "4.7.2",
"url-loader": "^4.1.1",
"webpack": "^5.74.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"engines": {
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
}
}