forked from refcell/cairopal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "cairopal",
"version": "0.3.0",
"description": "Flexible Starknet Dapp Template",
"main": "index.js",
"repository": "https://github.com/a5f9t4/cairopal.git",
"author": "Alucard <https://github.com/a5f9t4>",
"license": "AGPL-3.0-only",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@argent/get-starknet": "^0.1.4",
"@chakra-ui/react": "^1.7.3",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@fontsource/lexend": "^4.5.1",
"@starknet-react/core": "^0.4.4",
"framer-motion": "^4.1.17",
"material-react-toastify": "^1.0.1",
"next": "^12.0.7",
"next-pwa": "^5.4.4",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"starknet": "^2.5.0",
"use-deep-compare-effect": "^1.8.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^15.0.0",
"@types/react": "^17.0.37",
"commitlint": "^15.0.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.7",
"eslint-config-sznm": "^0.1.13",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"next-sitemap": "^1.6.203",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"typescript": "^4.5.4"
}
}