-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "sentineo",
"version": "1.11.0",
"displayName": "SentiNEO",
"description": "SentiNEO: Near-Earth Objects Viewer",
"url": "https://sentineo.app",
"repository": {
"type": "git",
"url": "git+https://github.com/vandreleal/sentineo.git"
},
"keywords": [
"NASA",
"NeoWs",
"APOD"
],
"author": "Vandré Leal",
"license": "MIT",
"bugs": {
"url": "https://github.com/vandreleal/sentineo/issues"
},
"homepage": "https://github.com/vandreleal/sentineo#readme",
"scripts": {
"prepare": "husky",
"dev": "next dev --turbopack",
"build": "next build",
"export": "next export",
"start": "next start",
"test": "jest --watch",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format": "pnpm lint:fix && pnpm prettier"
},
"dependencies": {
"@geist-ui/core": "2.3.8",
"@geist-ui/icons": "1.0.2",
"@next/bundle-analyzer": "15.1.0",
"date-fns": "4.1.0",
"next": "15.1.0",
"next-pwa": "5.6.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"recoil": "0.7.7",
"sharp": "0.33.5",
"uuid": "11.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@trivago/prettier-plugin-sort-imports": "5.2.0",
"@types/node": "22.10.2",
"@types/react": "18.2.65",
"@types/react-dom": "18.3.0",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"eslint": "8.57.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-vandre": "1.1.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-testing-library": "6.3.0",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.11",
"msw": "2.6.8",
"prettier": "3.4.2",
"styled-components": "6.1.13",
"typescript": "5.7.2"
}
}