forked from PFC-developer/big-dipper-2.0-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.95 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
92
93
94
{
"name": "big-dipper-2.0-cosmos",
"version": "1.0.0",
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon",
"build": "npm run build:next && npm run build:server",
"build:server": "tsc --project tsconfig.server.json",
"build:next": "next build",
"start": "NODE_ENV=production node dist/index.js",
"type-check": "tsc",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"test": "NODE_ENV=test jest",
"e2e": "cypress open",
"graphql:codegen": "graphql-codegen"
},
"dependencies": {
"@apollo/client": "^3.1.5",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"@socialgouv/matomo-next": "^1.2.2",
"axios": "^0.21.4",
"bech32": "^2.0.0",
"big.js": "^6.1.1",
"classnames": "^2.2.6",
"color": "^3.1.3",
"copy-to-clipboard": "^3.3.1",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dompurify": "^2.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"helmet": "^4.6.0",
"isomorphic-ws": "^4.0.1",
"jdenticon": "^3.1.0",
"markdown-to-jsx": "^7.1.2",
"mock-apollo-client": "^1.1.0",
"next": "^12.1.0",
"next-seo": "^4.26.0",
"next-translate": "^1.0.3",
"numeral": "2.0.4",
"qrcode.react": "^1.0.1",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-share": "^4.4.0",
"react-toastify": "^7.0.3",
"react-virtualized-auto-sizer": "^1.0.4",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.7",
"recharts": "^2.0.8",
"recoil": "^0.4.1",
"subscriptions-transport-ws": "^0.10.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.1",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/typescript": "^1.21.0",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.0.2",
"@testing-library/react-hooks": "^3.7.0",
"@types/big.js": "^6.1.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"axios-mock-adapter": "^1.19.0",
"babel-jest": "^27.3.1",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"jest": "^27.3.1",
"jest-localstorage-mock": "^2.4.18",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^0.6.1",
"nodemon": "^2.0.4",
"react-test-renderer": "^17.0.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
}
}