-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "PaintToEarn.eth",
"version": "0.2.0",
"description": "Paint-to-earn community canvas on the Ethereum blockchain",
"main": "index.js",
"repository": "https://github.com/trentrand/PaintToEarn.eth.git",
"author": "Trent Rand <https://github.com/trentrand>",
"license": "AGPL-3.0-only",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"log-storage-vars": "python3.7 getStorageVarAddress.py",
"start": "next start",
"test": "pytest tests/ -s -p no:warnings",
"test:watch": "ptw -- tests/ -s -p no:warnings",
"lint": "next lint",
"lint:fix": "eslint src --fix && npm run format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"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",
"chakra-color-picker": "0.0.6",
"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",
"prop-types": "^15.8.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.6.0"
}
}