-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
69 lines (69 loc) · 2.31 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": "libplanet-explorer",
"version": "0.1.0",
"description": "Libplanet Explorer",
"scripts": {
"prebuild": "yarn codegen",
"dev": "run-p \"dev:**\"",
"build": "yarn prebuild && next build",
"export": "next export",
"start": "next start",
"lint": "run-s prettier eslint",
"lint:fix": "run-s prettier:fix eslint:fix",
"eslint": "next lint",
"eslint:fix": "next lint --fix",
"prettier": "prettier --check \"@(*.css|*.js|*.json|@(components|lib|pages|src)/**/*.@(ts|tsx))\"",
"prettier:fix": "prettier --write \"@(*.css|*.js|*.json|@(components|lib|pages|src)/**/*.@(ts|tsx))\"",
"predev:next": "yarn codegen",
"dev:next": "run-s predev:next next-dev",
"next-dev": "next dev",
"dev:lint": "onchange \"@(*.css|*.js|*.json|@(components|lib|pages|src|types)/**/*.@(ts|tsx))\" -- prettier --write \\{\\{changed\\}\\} && next lint --fix \\{\\{changed\\}\\}",
"codegen": "graphql-codegen --config codegen.yml",
"tsc": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git://github.com/planetarium/libplanet-explorer-frontend.git"
},
"keywords": [
"blockchain"
],
"author": "Planetarium",
"license": "MIT",
"bugs": {
"url": "https://github.com/planetarium/libplanet-explorer-frontend/issues"
},
"homepage": "https://github.com/planetarium/libplanet-explorer-frontend#readme",
"dependencies": {
"@apollo/client": "^3.7.1",
"@emotion/css": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fluentui/react": "^8.99.2",
"@graphql-codegen/cli": "^2.13.8",
"@graphql-codegen/client-preset": "^1.1.3",
"@graphql-typed-document-node/core": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"bencodex": "^0.1.2",
"eslint-plugin-react": "^7.31.10",
"graphql": "^16.6.0",
"next": "13.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-json-tree": "^0.17.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@types/node": "18.11.8",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"typescript": "4.8.4"
},
"packageManager": "[email protected]"
}