-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "metabase-school",
"description": "A Metabase-integrated, collaborative tool for writing SQL.",
"version": "0.1.0",
"author": "Haoping",
"scripts": {
"dev": "next",
"build": "npm run build:next && npm run build:functions",
"build:next": "next build",
"build:functions": "npx zip-it-and-ship-it ./functions ./functions-dist",
"start": "next start",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"type-check": "tsc --noEmit"
},
"engines": {
"node": ">= 14"
},
"dependencies": {
"@monaco-editor/react": "^4.0.11",
"@netlify/zip-it-and-ship-it": "^3.0.1",
"firebase": "^8.2.10",
"firebase-admin": "^9.5.0",
"monaco-editor": "^0.23.0",
"next": "latest",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-firebase-hooks": "^3.0.2",
"styled-components": "^5.0.0",
"swr": "^0.5.3"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^3.0.3",
"@types/node": "12.0.12",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "5.0.1",
"babel-plugin-styled-components": "^1.10.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "4.0",
"webpack": "^4.44.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run type-check && lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "npm run format"
},
"keywords": [
"metabase",
"sql-editor",
"learning"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caaatisgood/metabase-school"
}
}