-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "murmurations-tools",
"version": "1.0.0",
"license": "GPLv3",
"private": true,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "remix-serve ./build/server/index.js",
"lint": "eslint --ignore-path .gitignore --ext .js --ext .jsx .",
"lint-fix": "eslint --ignore-path .gitignore --ext .js --ext .jsx . --fix",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|jsx|json)\"",
"format": "npm run prettier -- --write",
"prepare": "husky"
},
"eslintConfig": {
"extends": [
"eslint-config-prettier"
]
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run lint-fix",
"npm run format"
]
},
"dependencies": {
"@murmurations/jsig": "^1.0.9",
"@murmurations/jsrfg": "^1.0.7",
"@remix-run/node": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/serve": "^2.12.1",
"bcryptjs": "^2.4.3",
"cuid": "^2.1.8",
"isbot": "^5.1.17",
"mongodb": "^6.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1"
},
"devDependencies": {
"@remix-run/dev": "^2.12.1",
"@remix-run/eslint-config": "^2.12.1",
"@tailwindcss/forms": "^0.5.9",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}