-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "beamapp",
"version": "1.0.0",
"author": "Henry Chan",
"description": "Beam Fi Dapp",
"private": true,
"keywords": [
"nextjs",
"internet computer",
"icp",
"dfinity",
"chakra",
"react"
],
"scripts": {
"dev": "DEBUG=beamfi:* next dev --port=3002",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"analyze": "cross-env ANALYZE=true next build",
"export": "next export",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.1",
"@dfinity/agent": "^0.15.4",
"@dfinity/auth-client": "^0.15.4",
"@dfinity/candid": "^0.15.4",
"@dfinity/identity": "^0.15.4",
"@dfinity/principal": "^0.15.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/poppins": "^4.5.10",
"@nfid/wallet": "^1.1.0",
"@splitbee/web": "^0.3.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"compressorjs": "^1.2.1",
"crc": "^4.3.2",
"crc-32": "^1.2.2",
"date-fns": "^2.29.3",
"debug": "^4.3.4",
"events": "^3.3.0",
"formik": "^2.2.9",
"framer-motion": "^10.2.5",
"js-sha256": "^0.9.0",
"mobx": "^6.8.0",
"mobx-react": "7.6.0",
"mobx-state-tree": "^5.1.8",
"mobx-store-provider": "^2.1.2",
"moment": "^2.29.4",
"next": "^13.2.4",
"next-share": "^0.19.0",
"node-esapi": "^0.0.1",
"nprogress": "^0.2.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-router-dom": "^6.9.0",
"react-wrap-balancer": "^0.4.0",
"swr": "^2.1.0",
"underscore": "^1.13.6",
"util": "^0.12.5",
"yup": "^1.0.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,html,json}": "prettier --write"
}
}