forked from dashpresshq/dashpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
156 lines (156 loc) · 4.85 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "dashpress",
"version": "1.0.4",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"start": "next start",
"build:next": "next build",
"commit": "cz",
"release": "standard-version",
"analyze": "cross-env ANALYZE=true next build",
"build:bin": "tsup ./src/bin/index.ts",
"build": "npm run build:bin && npm run translations:compile && npm run build:next",
"build:clean": "rimraf .next/cache && rimraf .next/trace && rimraf .next/**/*.nft.json",
"prepublishOnly": "npm run build && npm run build:clean",
"setup-husky": "husky install",
"test": "cross-env NODE_OPTIONS=--max_old_space_size=4096 jest --forceExit --runInBand",
"test:cov": "npm run test -- --coverage",
"typecheck": "tsc",
"translations:extract": "lingui extract --clean",
"translations:compile": "lingui compile",
"lint": "eslint --ext ts,tsx .",
"lint:fix": "eslint --fix",
"verify": "node ./scripts/ci && npm run typecheck && npm run lint && npm run test:cov",
"storybook": "start-storybook -p 6006",
"prepare": "husky install"
},
"files": [
".next",
"dist",
"bin",
"public",
".env.example"
],
"bin": "./bin/dashpress",
"dependencies": {
"@dashpress/bacteria": "^0.0.12",
"@lingui/core": "^4.10.0",
"@lingui/react": "^4.10.0",
"@tanstack/react-query": "^5.28.9",
"@tanstack/react-table": "^8.7.9",
"bcrypt": "^5.0.1",
"change-case": "^4.1.2",
"class-validator": "^0.13.2",
"cryptr": "^6.0.3",
"date-fns": "^2.28.0",
"execa": "^6.1.0",
"final-form": "^4.20.7",
"final-form-arrays": "^3.0.2",
"formidable": "^3.5.1",
"fs-extra": "^10.1.0",
"immer": "9.0.3",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"latest-version": "^7.0.0",
"lodash": "^4.17.21",
"microseconds": "^0.2.0",
"mustache": "^4.2.0",
"nanoid": "^4.0.0",
"next": "13.3.1",
"nodemailer": "^6.8.0",
"path": "^0.12.7",
"prismjs": "^1.28.0",
"qs": "^6.11.0",
"ramda": "0.27.1",
"randomstring": "^1.2.2",
"react": "18.2.0",
"react-bootstrap": "^2.4.0",
"react-datepicker": "^4.8.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.1",
"react-easy-sort": "^1.5.0",
"react-feather": "^2.0.10",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-hot-toast": "^2.2.0",
"react-paginate": "^8.1.3",
"react-quill": "^2.0.0",
"react-select": "^5.3.2",
"react-simple-code-editor": "^0.11.0",
"react-tooltip": "^5.7.4",
"react-use": "^17.4.0",
"redis": "^4.4.0",
"styled-components": "^6.1.8",
"terminal-link": "^3.0.0",
"tiny-skeleton-loader-react": "^1.2.1",
"winston": "^3.8.2",
"zod": "^3.21.4",
"zustand": "3.4.2"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@dashpress/eslint-config": "^1.0.6",
"@lingui/cli": "^4.10.0",
"@lingui/loader": "^4.10.0",
"@lingui/macro": "^4.10.0",
"@lingui/swc-plugin": "^4.0.0",
"@next/bundle-analyzer": "^14.2.2",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-info": "^4.1.18",
"@storybook/addon-links": "^6.5.3",
"@storybook/addons": "^6.5.3",
"@storybook/react": "^6.5.14",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/cryptr": "^4.0.1",
"@types/formidable": "^3.4.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/microseconds": "^0.2.0",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.6",
"@types/prismjs": "^1.26.0",
"@types/qs": "^6.9.7",
"@types/ramda": "0.27.40",
"@types/react": "^18.0.11",
"@types/react-datepicker": "^4.4.1",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-loader": "^8.2.5",
"commitlint-config-git-commit-emoji": "^1.0.0",
"cross-env": "^7.0.3",
"cz-emoji-conventional": "^1.0.1",
"eslint": "^8.19.0",
"gettext-parser": "^8.0.0",
"husky": "^8.0.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.0.2",
"msw": "^0.44.1",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react-is": "^18.1.0",
"rimraf": "^3.0.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-svg-import": "^1.6.0",
"standard-version": "^9.5.0",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16"
}
}