-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
77 lines (77 loc) · 2.31 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
{
"name": "opensourcehub",
"version": "1.0.0",
"private": true,
"description": "Open Source Hub",
"author": "Maxime Preaux",
"license": "MIT",
"keywords": [
"open source",
"remix"
],
"scripts": {
"build": "yarn run dev:projects && yarn run build:css && remix build",
"build:css": "NODE_ENV=production postcss styles --base styles --dir app/styles",
"dev": "yarn run dev:projects && concurrently \"yarn run dev:css\" \"remix dev\"",
"dev:css": "postcss styles --base styles --dir app/styles -w",
"dev:projects": "npx ts-node app/utils/parse-projects.ts",
"start": "remix-serve build",
"test": "jest",
"test:watch": "jest --watch",
"dev:firebase": "npx firebase emulators:start --project development --only auth,firestore --import seed",
"typecheck": "npx tsc --project ./tsconfig.json"
},
"dependencies": {
"@octokit/app": "^13.0.9",
"@octokit/graphql": "4.8.0",
"@octokit/rest": "^18.12.0",
"@primer/octicons-react": "17.5.0",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/vercel": "^1.7.2",
"@tryghost/content-api": "^1.11.0",
"@vercel/node": "^2.5.20",
"autoprefixer": "^10.4.12",
"axios": "0.27.2",
"classnames": "^2.3.2",
"concurrently": "^7.2.1",
"dayjs": "^1.11.5",
"discord-oauth2": "^2.10.0",
"dotenv": "16.0.3",
"firebase": "^9.8.2",
"firebase-admin": "^10.3.0",
"front-matter": "^4.0.2",
"js-search": "2.0.0",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"nanoid": "^3.3.4",
"postcss": "^8.4.16",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select": "^5.4.0",
"remark-emoji": "2.2.0",
"tailwindcss": "^3.1.8",
"tiny-invariant": "^1.3.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@types/js-search": "1.4.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/tryghost__content-api": "^1.3.11",
"cli-progress": "^3.11.0",
"cssnano": "^5.1.12",
"eslint": "^8.17.0",
"firebase-tools": "^10.8.0",
"jest": "29.0.1",
"prettier": "2.3.2",
"typescript": "^4.5.5"
}
}