-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.12 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
{
"name": "@kieranroneill/aether",
"version": "1.2.0",
"description": "aether is a modern file storage platform that implements a state-of-the-art Merkle tree structure to store multiple files",
"main": "./.build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kieranroneill/aether"
},
"author": {
"name": "Kieran O'Neill",
"email": "hello@kieranoneill",
"url": "https://github.com/kieranroneill"
},
"license": "GPL-3.0-or-later",
"private": true,
"keywords": [
"golang",
"hashing",
"merkle-proof",
"merkle-tree",
"nextjs",
"storage"
],
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"build": "EXT_PUBLIC_VERSION=$npm_package_version next build",
"dev": "NEXT_PUBLIC_VERSION=$npm_package_version next dev",
"lint": "next lint",
"prepare": "husky install",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,ts,tsx}\"",
"start": "next start"
},
"devDependencies": {
"@chakra-ui/utils": "^2.0.14",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"axios": "^1.6.7",
"framer-motion": "^11.0.6",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1"
}
}