-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
69 lines (69 loc) · 2.26 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
{
"name": "fcl-dev-wallet",
"version": "0.3.4",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "concurrently \"APP_ENV=local next dev --port 8701\" \"go run ./go/wallet/cmd/main.go --port 8799\" --raw",
"build": "next build",
"start": "concurrently \"next start\" \"go run ./go/wallet/cmd/main.go --port 8799\" --raw",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tsc": "./node_modules/typescript/bin/tsc",
"test": "cypress run",
"check": "eslint . && npm run tsc",
"export": "next export",
"bundle": "next build && next export",
"zip": "cd ./out && zip -FSr ../go/wallet/bundle.zip . && cd ..",
"config": "cp .env.development ./go/wallet",
"go-server": "npm run bundle && npm run zip && npm run config && go run ./go/wallet/cmd/main.go"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@headlessui/react": "^1.3.0",
"@mdx-js/react": "^1.6.22",
"@monaco-editor/react": "^4.2.1",
"@onflow/fcl": "^1.10.0-alpha.4",
"@onflow/types": "^1.3.0-alpha.2",
"@theme-ui/color": "^0.14.5",
"@theme-ui/css": "^0.14.5",
"@theme-ui/match-media": "^0.14.5",
"cors": "^2.8.5",
"elliptic": "^6.5.4",
"formik": "^2.2.9",
"monaco-editor": "^0.27.0",
"namegenerator": "^0.1.1",
"next": "latest",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-image": "^4.0.3",
"sha3": "^2.1.4",
"styled-components": "^5.2.1",
"theme-ui": "^0.14.5",
"yup": "^0.32.9"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.9.2",
"@types/cors": "^2.8.12",
"@types/elliptic": "^6.4.12",
"@types/node": "^15.12.5",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-eslint": "^10.1.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"concurrently": "^8.2.0",
"cypress": "^8.0.0",
"cypress-iframe": "^1.0.1",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.3.2",
"rimraf": "^5.0.1",
"typescript": "^4.3.4"
}
}