-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "login-with-face",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run build:tailwind && next dev",
"build": "npm run build:tailwind && next build",
"start": "next start",
"build:tailwind": "tailwindcss-cli build ./public/css/tailwind.css -o ./public/css/tailwind-build.css",
"build:tailwind:prod": "cross-env NODE_ENV=production npm run build:tailwind"
},
"dependencies": {
"@firebase/firestore-types": "^2.3.0",
"cross-env": "^7.0.3",
"firebase": "^8.6.5",
"firebase-admin": "^9.9.0",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.16.0",
"react-webcam": "^5.2.4",
"tailwindcss-cli": "^0.1.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"autoprefixer": "^10.2.6",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"postcss": "^8.3.0",
"prettier": "^2.3.0",
"tailwindcss": "^2.1.4",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
}
}