-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "@nandomoreirame/motivaai",
"private": true,
"description": "💪 Gere uma frase motivacional pra dar um UP no seu dia!",
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "remix dev",
"build": "remix build",
"deploy": "vercel deploy --prod",
"test": "run-p test:*",
"test:lint": "eslint '**/*.{ts,tsx}' --max-warnings=0",
"test:prettier": "prettier '**/*.{json,js,jsx,ts,tsx}' --check",
"format": "prettier --write ."
},
"dependencies": {
"@notionhq/client": "^1.0.4",
"@remix-run/node": "^1.4.1",
"@remix-run/react": "^1.4.1",
"@remix-run/vercel": "^1.4.1",
"@vercel/node": "^1.14.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"slugify": "^1.6.5"
},
"devDependencies": {
"@remix-run/dev": "^1.4.1",
"@remix-run/eslint-config": "^1.4.1",
"@remix-run/serve": "^1.4.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"sass": "^1.50.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}