-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
61 lines (61 loc) · 1.89 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": "wallet",
"version": "3.4.8",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"dev": "next -p 3001",
"build": "next build",
"store-ipfs": "npx @glif/deployment-cli ipfs ./out $WEB3_STORAGE_TOKEN",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "npm run lint -- --fix",
"start": "next start",
"test": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"export": "next build && next export",
"serve": "npx serve ./out",
"tsc": "tsc",
"publish:calibration": "wrangler publish --env calibration",
"publish:mainnet": "wrangler publish --env mainnet"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@glif/base-css": "^0.0.33",
"@glif/filecoin-address": "^2.0.37",
"@glif/filecoin-message": "^2.0.37",
"@glif/filecoin-number": "^2.0.34",
"@glif/filecoin-wallet-provider": "^2.0.37",
"@glif/react-components": "^2.1.13",
"next": "^12.2.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.5",
"swr": "^1.3.0"
},
"devDependencies": {
"@glif/deployment-cli": "^2.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/react": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-jest": "^28.1.3",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.24.0",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.3",
"jest-styled-components": "^7.0.8",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"whatwg-fetch": "^3.6.2"
},
"license": "(Apache-2.0 OR MIT)"
}