-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
94 lines (94 loc) · 2.37 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
92
93
94
{
"name": "underlay",
"version": "0.0.1",
"author": "Knowledge Futures, Inc <[email protected]>",
"license": "GPL-2.0+",
"sideEffects": false,
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"build": "next build",
"dev": "next",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"format": "prettier --write '*.{ts,tsx,js,jsx,scss,json}'",
"prebuild": "prisma generate",
"start": "NODE_ENV=production node server.js",
"type-check": "tsc",
"type-check-watch": "tsc --watch",
"test": "jest"
},
"engines": {
"node": ">=14.16.1"
},
"gitHooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run type-check"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,scss,json}": [
"prettier --write"
],
"schema.prisma": [
"npx prisma format"
]
},
"dependencies": {
"@blueprintjs/core": "^4.0.0-beta.10",
"@blueprintjs/icons": "^4.0.0-beta.6",
"@blueprintjs/popover2": "^1.1.4",
"@blueprintjs/select": "^4.0.0-beta.10",
"@hapi/iron": "^6.0.0",
"@next/bundle-analyzer": "^12.0.7",
"@prisma/client": "^3.6.0",
"@supabase/supabase-js": "^1.30.0",
"classnames": "^2.3.1",
"cookie": "^0.5.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.0.0",
"csv-parse": "^5.0.4",
"csv-stringify": "^6.1.3",
"diacritics": "^1.3.0",
"docsify-cli": "^4.4.4",
"fathom-client": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"next": "^12.1.6",
"next-connect": "^0.12.2",
"next-s3-upload": "^0.2.1",
"next-superjson": "0.0.3",
"normalize-css": "^2.3.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-easy-crop": "^4.0.1",
"react-markdown": "^8.0.0",
"react-timeago": "^7.1.0",
"remark-gfm": "^3.0.1",
"superjson": "^1.7.5",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/crypto-js": "^4.0.1",
"@types/diacritics": "^1.3.1",
"@types/jest": "^27.5.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^14.0.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-timeago": "^4.1.3",
"@types/uuid": "^8.3.0",
"jest": "^28.1.0",
"lint-staged": "^12.3.7",
"node-sass": "^7.0.1",
"prettier": "^2.4.0",
"prisma": "^3.6.0",
"ts-jest": "^28.0.2",
"typescript": "^4.4.2",
"vitepress": "^1.0.0-alpha.8",
"vue": "^3.2.37",
"yorkie": "^2.0.0"
},
"browser": {
"./utils/server/auth/user.ts": false
}
}