-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.18 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
95
96
97
98
99
100
101
102
103
{
"name": "@cennznet/app-gov",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx build",
"clean": "nx clear-cache",
"dev": "nx serve",
"format": "prettier --config .prettierrc.js ./ --write",
"gov-website:build": "nx run gov-website:build:production",
"gov-website:dev": "nx run gov-website:serve",
"gov-website:lint": "nx run gov-website:lint",
"gov-relayer:build": "nx run gov-relayer:build:production",
"gov-relayer:dev": "run-p gov-relayer:webpack gov-relayer:docker",
"gov-relayer:webpack": "nx run gov-relayer:serve",
"gov-relayer:docker": "docker compose up",
"test": "nx test",
"relayer:proposal-patch": "node dist/apps/gov-relayer/main.js proposal-patch",
"relayer:proposal-monitor": "node dist/apps/gov-relayer/main.js proposal-monitor"
},
"private": true,
"dependencies": {
"@cennznet/api": "^2.1.1-alpha.4",
"@headlessui/react": "^1.6.5",
"@nrwl/next": "14.3.6",
"chalk": "^4",
"core-js": "^3.6.5",
"discord.js": "^13.8.0",
"emittery": "^0.11.0",
"lodash-es": "^4.17.21",
"mongoose": "^6.4.4",
"next": "12.2.0",
"next-auth": "^4.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-extras": "^3.0.0",
"react-markdown": "^8.0.3",
"regenerator-runtime": "0.13.7",
"remark-breaks": "^3.0.2",
"remark-gfm": "^3.0.1",
"store": "^2.0.12",
"tslib": "^2.3.0",
"ua-parser-js": "^1.0.2",
"winston": "^3.8.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@nrwl/cli": "14.3.6",
"@nrwl/cypress": "14.3.6",
"@nrwl/eslint-plugin-nx": "14.3.6",
"@nrwl/jest": "14.3.6",
"@nrwl/linter": "14.3.6",
"@nrwl/node": "^14.4.2",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "14.3.6",
"@nrwl/web": "14.3.6",
"@nrwl/workspace": "14.3.6",
"@tailwindcss/typography": "^0.5.3",
"@testing-library/react": "13.3.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "27.4.1",
"@types/lodash-es": "^4",
"@types/node": "16.11.7",
"@types/react": "18.0.13",
"@types/react-dom": "18.0.5",
"@types/store": "^2",
"@types/ua-parser-js": "^0.7.36",
"@typescript-eslint/eslint-plugin": "~5.24.0",
"@typescript-eslint/parser": "~5.24.0",
"autoprefixer": "^10.4.7",
"babel-jest": "27.5.1",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "27.5.1",
"npm-run-all": "^4.1.5",
"nx": "14.3.6",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"react-test-renderer": "18.2.0",
"tailwindcss": "^3.1.2",
"tailwindcss-fluid-type": "^1.3.3",
"ts-jest": "27.1.4",
"ts-node": "~10.8.0",
"typescript": "~4.7.2"
},
"packageManager": "[email protected]",
"resolutions": {
"@polkadot/util": "8.7.1",
"@polkadot/util-crypto": "8.7.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"nx": "14.2.4",
"rxjs": "7.5.5"
}
}