-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
67 lines (67 loc) · 2.08 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": "hackernews",
"version": "0.1.0",
"description": "A Hacker News clone built to demonstrate Remix and React for production ready websites.",
"engines": {
"node": ">=14.16.0"
},
"scripts": {
"build": "npm run clean && remix build",
"build:docker": "docker build --tag 'clintonwoo/hackernews-remix-react:latest' --rm . && docker run --rm -p 8080:8080 --name hackernews-remix-react clintonwoo/hackernews-remix-react",
"build:prod": "NODE_ENV=production npm run clean && remix build",
"check": "tsc --noEmit",
"clean": "rm -rf build && rm -rf public/build",
"dev": "NODE_ENV=production remix dev",
"debug:prod": "DEBUG=app:* NODE_ENV=production npm run dev",
"lint": "eslint \"src/**/*.ts?(x)\" --ext .js,.jsx,.ts,.tsx",
"postinstall": "remix setup node",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"start": "remix-serve build",
"start:prod": "NODE_ENV=production remix-serve build",
"test": "jest"
},
"author": "Clinton D'Annolfo",
"license": "MIT",
"keywords": [
"hacker-news",
"clone",
"react",
"remix"
],
"dependencies": {
"@firebase/app": "0.7.16",
"@firebase/database": "0.12.5",
"@remix-run/react": "1.2.0",
"@remix-run/serve": "1.2.0",
"debug": "4.3.3",
"dotenv": "16.0.0",
"invariant": "2.2.4",
"lru-cache": "6.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"remix": "1.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.2.0",
"@remix-run/eslint-config": "1.2.0",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@types/debug": "4.1.7",
"@types/invariant": "2.2.35",
"@types/jest": "27.4.0",
"@types/node": "17.0.16",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"eslint": "8.8.0",
"jest": "27.5.1",
"mockdate": "3.0.5",
"prettier": "2.5.1",
"react-router-dom": "6.2.1",
"react-test-renderer": "17.0.2",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"tslint-config-prettier": "1.18.0",
"typescript": "4.5.5"
}
}