-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.64 KB
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
{
"name": "writter",
"description": "A Twitter clone with Remix and Kontenbase.",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "remix setup node",
"build": "remix build",
"dev": "node -r dotenv/config node_modules/.bin/remix dev",
"dev:remix": "remix dev",
"start": "remix-serve build",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.ts,.tsx",
"lint:fix": "eslint --fix . --ext .js,.ts,.tsx"
},
"dependencies": {
"@chakra-ui/icons": "1.1.1",
"@chakra-ui/react": "1.8.1",
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@kontenbase/sdk": "0.6.2",
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"@remix-run/vercel": "^1.1.3",
"dayjs": "1.10.7",
"dotenv": "16.0.0",
"framer-motion": "5.6.0",
"invariant": "2.2.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3",
"remix-auth": "3.2.1",
"remix-auth-form": "1.1.1"
},
"devDependencies": {
"@remix-run/dev": "^1.1.3",
"@types/invariant": "2.2.35",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}