-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.05 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
{
"name": "selab-core-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"stylelint": "stylelint --ignore-path .gitignore '**/*.(css|tsx|ts)' --fix",
"lint": "eslint .",
"lint-staged": "lint-staged",
"commit": "cz"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"stylelint --fix",
"eslint"
]
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^2.8.8",
"@reduxjs/toolkit": "^1.8.0",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.0.0",
"@toast-ui/react-editor": "^3.1.3",
"@types/axios": "^0.14.0",
"@types/prismjs": "^1.26.0",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "^8.3.4",
"axios": "^0.26.1",
"eslint": "7",
"next": "12.1.4",
"next-redux-wrapper": "^7.0.5",
"prismjs": "^1.27.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hook-form": "^7.30.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.8",
"redux-persist": "^6.0.0",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.37.2",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"commitizen": "^4.2.4",
"cz-emoji": "^1.3.1",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.5",
"postcss-syntax": "^0.36.2",
"prettier": "^2.5.1",
"redux-logger": "^3.0.6",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^25.0.0",
"typescript": "4.6.3"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
}
}