-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.54 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
{
"private": true,
"name": "doot",
"description": "",
"license": "",
"scripts": {
"build": "run-s build:styles build:server",
"build:server": "remix build",
"build:styles": "tailwindcss --output ./app/styles/tailwind.css",
"postinstall": "remix setup node",
"setup": "run-s setup:env start:db setup:db 'migrate up'",
"setup:db": "node -r dotenv/config scripts/setup.js",
"setup:env": "node -r dotenv/config scripts/generateEnvFile.js",
"migrate": "node -r dotenv/config migrate.js",
"db:dump": "docker-compose exec db pg_dump -U doot -d doot -a --inserts --rows-per-insert=100 > db.sql",
"start": "run-p watch:*",
"watch:build": "remix watch",
"watch:server": "node -r dotenv/config server/index.js",
"watch:styles": "run-s 'build:styles --watch'",
"prestart": "run-s start:db",
"start:db": "docker-compose up -d db"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.5",
"@remix-run/express": "^1.1.3",
"@remix-run/react": "^1.1.3",
"@slonik/migrator": "^0.9.1",
"argon2": "^0.28.4",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"fs-extra": "^10.0.1",
"inquirer": "^8.2.0",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"pg": "^8.7.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3",
"s-ago": "^2.2.0",
"simple-markdown": "^0.7.3",
"slonik": "^27.1.0",
"slonik-interceptor-preset": "^1.2.10"
},
"devDependencies": {
"@danielfgray/tw-heropatterns": "^0.1.4",
"@remix-run/dev": "^1.1.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.1",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.0",
"@types/morgan": "^1.9.3",
"@types/pg": "^8.6.5",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.22",
"typescript": "^4.6.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}