-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "stock-recipes",
"version": "0.0.1",
"repository": "https://github.com/hikaru7719/stock-recipes.git",
"license": "MIT",
"author": "Hikaru Miyahara",
"main": "firebaseFunctions.js",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write .",
"lint": "eslint . --ext .tsx,.ts",
"list:fix": "eslint . --ext .tsx,.ts --fix",
"sort": "sort-package-json",
"test": "jest"
},
"dependencies": {
"@reduxjs/toolkit": "1.5.0",
"autoprefixer": "10.1.0",
"class-transformer": "0.3.1",
"dayjs": "1.10.3",
"firebase": "8.2.1",
"firebase-functions": "3.13.1",
"firebase-tools": "9.2.2",
"next": "10.0.4",
"postcss": "8.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "6.14.0",
"react-redux": "7.2.2",
"swr": "0.3.11",
"tailwindcss": "2.0.2",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.12.12",
"@types/jest": "26.0.19",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.11.0",
"@typescript-eslint/parser": "4.11.0",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-import": "2.22.1",
"firebase-admin": "9.4.2",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"sort-package-json": "1.48.0",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.1.3"
}
}