-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
105 lines (105 loc) · 3.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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "rocketcrab",
"author": "Tanner Krewson",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"build": "run-s build:server build:client",
"build:client": "next build",
"build:server": "tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server/index.js",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx,json,yml,md}",
"lint": "eslint .",
"lint:staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:all": "run-s lint type-check test",
"test:coverage": "jest --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.@(js|ts|tsx|json|md)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@aw-web-design/react-textfit": "4.1.135",
"@nextui-org/react": "^2.4.6",
"bad-words": "^3.0.4",
"body-parser": "^1.20.2",
"classnames": "^2.5.1",
"cron": "^3.1.7",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"dexie": "^4.0.8",
"emoji-picker-react": "^4.11.1",
"express": "^4.19.2",
"fontsource-inconsolata": "^3.0.5",
"fontsource-mukta": "^3.0.5",
"framer-motion": "^11.3.19",
"fslightbox-react": "^1.7.6",
"next": "^14.2.5",
"next-dark-mode": "^3.0.0",
"next-pwa": "^5.6.0",
"nookies": "^2.5.2",
"phonetic-alphabet-converter": "^1.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-ios-pwa-prompt": "^2.0.6",
"react-markdown": "^6.0.3",
"react-qr-code": "^2.0.15",
"react-spinners-kit": "^1.9.1",
"react-toastify": "^10.0.5",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"swiper": "^11.1.8",
"uuid": "^10.0.0",
"ws": "^7.5.10"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/cron": "^2.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/socket.io": "^3.0.1",
"@types/webpack-env": "^1.18.5",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tannerkrewson/rocketcrab.git"
},
"bugs": {
"url": "https://github.com/tannerkrewson/rocketcrab/issues"
},
"homepage": "https://rocketcrab.com/",
"engines": {
"node": "20.x",
"npm": "10.x"
}
}