-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
69 lines (69 loc) · 2.14 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"check-types": "tsc --noEmit",
"format": "prettier --write './**/*.{js,jsx,json,ts,tsx,html,css,md}'",
"check-format": "prettier --check './**/*.{js,jsx,json,ts,tsx,html,css,md}' '*.{cjs,js,jsx,json,ts,tsx,html,css,md}'",
"lint": "next lint",
"lint-fix": "next lint --fix",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'backend/**/*.test.ts'"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.2",
"@mui/utils": "^5.4.4",
"@rocicorp/undo": "^0.2.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"classnames": "^2.3.1",
"fractional-indexing": "^3.0.1",
"gzip-loader": "^0.0.1",
"lodash": "^4.17.21",
"nanoid": "^3.3.1",
"next": "latest",
"next-usequerystate": "^1.7.2",
"pg": "^8.7.3",
"pusher": "^4.0.2",
"pusher-js": "^7.0.6",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "^17.0.2",
"react-hotkeys": "^1.1.4",
"react-popper": "^2.2.5",
"react-remark": "^2.1.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"replicache": "^15.0.1",
"replicache-react": "5.0.1",
"zod": "^3.13.4"
},
"devDependencies": {
"@svgr/webpack": "^6.2.1",
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.181",
"@types/mocha": "^9.1.0",
"@types/node": "^12.12.21",
"@types/pg": "^8.6.4",
"@types/react": "^17.0.2",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.1",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"chai": "^4.3.6",
"eslint": "^8.15.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"mocha": "^9.2.1",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.2.1",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.9.3"
}
}