-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "oss-port",
"version": "1.0.0",
"private": true,
"description": "OSS Port",
"author": "Maxime Preaux",
"license": "MIT",
"keywords": [
"open source",
"remix"
],
"scripts": {
"build": "yarn run dev:projects && yarn run build:css && remix build",
"build:css": "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"
},
"dependencies": {
"@mdx-js/react": "1.6.22",
"@octokit/graphql": "4.8.0",
"@primer/octicons-react": "15.2.0",
"@remix-run/node": "^1.4.3",
"@remix-run/react": "^1.4.3",
"@remix-run/vercel": "^1.4.3",
"@vercel/node": "^1.15.0",
"autoprefixer": "^10.4.7",
"axios": "0.24.0",
"classnames": "2.3.1",
"concurrently": "^7.1.0",
"dotenv": "10.0.0",
"front-matter": "^4.0.2",
"js-search": "2.0.0",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"postcss": "^8.4.13",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "6.1.0",
"remark-emoji": "2.2.0",
"tailwindcss": "^3.0.24",
"tiny-invariant": "^1.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@remix-run/dev": "^1.4.3",
"@remix-run/eslint-config": "^1.4.3",
"@remix-run/serve": "^1.4.3",
"@types/classnames": "2.3.1",
"@types/js-search": "1.4.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "6.1.2",
"cli-progress": "^3.11.0",
"eslint": "^8.11.0",
"jest": "27.2.0",
"prettier": "2.3.2",
"typescript": "^4.5.5"
}
}