-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
{
"name": "dragme-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"lint:css": "stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"prepare": "husky install"
},
"dependencies": {
"@types/react-calendar": "^3.5.1",
"@types/styled-components": "^5.1.25",
"axios": "^0.27.2",
"babel-plugin-inline-react-svg": "^2.0.1",
"emoji-picker-react": "^3.5.1",
"immutability-helper": "^3.1.1",
"next": "12.2.1",
"react": "18.2.0",
"react-calendar": "^3.7.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "18.2.0",
"react-lottie-player": "^1.4.3",
"react-merge-refs": "^2.0.1",
"react-query": "^3.39.1",
"react-spinners": "^0.13.6",
"react-toastify": "^9.0.8",
"recoil": "^0.7.4",
"styled-components": "^5.3.5",
"styled-reset": "^4.4.2"
},
"devDependencies": {
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.11.0",
"eslint-config-next": "12.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss-html": "^1.5.0",
"postcss-syntax": "^0.36.2",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"stylelint-config-concentric-order": "^5.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-styled-components": "^0.1.1",
"typescript": "4.7.4",
"uuid": "^8.3.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"git add"
],
"*.+{json|css|md}": [
"stylelint --ignore-path .gitignore '**/*.(css|tsx)' --fix",
"git add"
]
}
}