This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.8 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
86
87
88
89
90
91
{
"name": "zoonk",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"deploy:firebase": "yarn firebase deploy",
"deploy:firestore": "yarn firebase deploy --only firestore",
"deploy:functions": "yarn firebase deploy --only functions",
"deploy:vercel": "yarn vercel --prod --scope=zoonk",
"dev": "next dev",
"eslint": "eslint",
"firebase": "firebase",
"indexes:get": "firebase firestore:indexes > database/firestore.indexes.json",
"install:deps": "yarn && yarn install:functions",
"install:functions": "cd functions && yarn",
"lint": "yarn eslint './**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier",
"start": "next start",
"start:firestore": "yarn firebase emulators:exec --only firestore",
"test": "FIRESTORE_EMULATOR_HOST=localhost:8080 yarn start:firestore 'jest'",
"test:coverage": "yarn start:firestore 'jest --coverage'",
"test:watch": "yarn start:firestore 'jest --watch'",
"tsc": "yarn tsc:app && yarn tsc:functions",
"tsc:app": "tsc",
"tsc:functions": "cd functions && yarn build",
"vercel": "vercel"
},
"dependencies": {
"@material-ui/core": "^4.9.13",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.52",
"algoliasearch": "^4.0.3",
"diff": "^4.0.2",
"firebase": "^7.15.2",
"is-hotkey": "^0.1.6",
"lodash": "^4.17.15",
"mitt": "^2.0.1",
"next": "^9.5.1",
"next-offline": "^5.0.2",
"react": "^16.13.1",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"react-dom": "^16.13.1",
"slate": "^0.58.3",
"slate-history": "^0.58.3",
"slate-react": "^0.58.3"
},
"devDependencies": {
"@firebase/testing": "^0.20.1",
"@next/bundle-analyzer": "^9.2.1",
"@types/cors": "^2.8.6",
"@types/diff": "^4.0.2",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/node": "^14.0.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"firebase-tools": "^8.4.3",
"husky": "^4.2.5",
"jest": "^25.5.4",
"lint-staged": "^10.2.2",
"prettier": "^1.19.1",
"ts-jest": "^25.5.1",
"typescript": "^3.9.3",
"vercel": "^19.1.0"
},
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"yarn eslint --fix"
]
}
}