forked from piro0919/planning-poker2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.82 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
{
"dependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@next/bundle-analyzer": "13.5.6",
"@react-hook/previous": "1.0.1",
"@szhsin/react-menu": "3.5.3",
"@types/node": "18.19.4",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"axios": "1.6.4",
"copy-to-clipboard": "3.3.3",
"dayjs": "1.11.10",
"eslint": "8.56.0",
"eslint-config-google": "0.14.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-ext": "0.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-postcss-modules": "2.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"eslint-plugin-sort-keys-shorthand": "2.2.0",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"eslint-plugin-unused-imports": "2.0.0",
"firebase": "9.23.0",
"firebase-admin": "11.11.1",
"firebase-tools": "11.30.0",
"husky": "8.0.3",
"lint-staged": "13.3.0",
"next": "13.5.6",
"next-connect": "0.13.0",
"next-pwa": "5.6.0",
"next-seo": "5.15.0",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.49.2",
"react-hot-toast": "2.4.1",
"react-icons": "4.12.0",
"react-loader-spinner": "5.4.5",
"react-spacer": "1.3.0",
"ress": "5.0.2",
"sass": "1.69.7",
"sass-mq": "6.0.0",
"stylelint": "14.16.1",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-recommended-scss": "8.0.0",
"stylelint-config-sass-guidelines": "9.0.1",
"stylelint-css-modules-no-global-scoped-selector": "1.0.2",
"stylelint-csstree-validator": "2.1.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-order": "6.0.4",
"stylelint-sass-render-errors": "3.2.0",
"sweetalert2": "11.10.2",
"sweetalert2-react-content": "5.0.7",
"typescript": "4.9.5",
"use-breakpoint": "3.1.1",
"use-on-snapshot": "0.2.0",
"usehooks-ts": "2.9.1"
},
"name": "planning-poker2",
"private": true,
"scripts": {
"build": "next build",
"build-with-analyze": "ANALYZE=true next build",
"dev": "FIRESTORE_EMULATOR_HOST=localhost:8080 next dev",
"lint": "next lint",
"lint:es": "next lint",
"lint:style": "stylelint --fix '**/*.scss'",
"prepare": "npx husky install",
"prettier": "prettier --write src",
"start": "next start",
"start:emulators": "firebase emulators:start",
"stylelint-check": "stylelint-config-prettier-scss-check",
"type-check": "tsc --noemit"
},
"version": "0.1.0"
}