This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
146 lines (146 loc) · 5.02 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
{
"name": "tell-me",
"description": "An awesome open source survey generator.",
"version": "0.0.0",
"license": "AGPL-3.0",
"private": true,
"type": "module",
"engines": {
"node": "16",
"npm": "8",
"pnpm": "7"
},
"scripts": {
"build": "next build",
"ci:e2e:check": "sh ./scripts/ci/e2e/check.sh",
"ci:e2e:setup": "sh ./scripts/ci/e2e/setup.sh",
"db:migrate": "prisma migrate deploy",
"debug": "envinfo --binaries --system --markdown",
"demo:record": "sh ./scripts/demo/record.sh",
"demo:setup": "sh ./scripts/demo/setup.sh",
"dev": "concurrently \"pnpm dev:next\" \"pnpm dev:intl\"",
"dev:docker": "docker compose down && docker compose -f ./docker-compose.yml -f ./docker-compose.dev.yml up -d db",
"dev:intl": "nodemon -e tsx --exec \"pnpm intl\" --watch ./app --watch ./pages",
"dev:migrate": "prisma migrate dev",
"dev:next": "node -r dotenv/config ./scripts/dev/start.js",
"dev:setup": "sh ./scripts/dev/setup.sh",
"docker:build": "docker compose build --no-cache app",
"postinstall": "sh ./scripts/build/postinstall.sh",
"intl": "pnpm intl:extract && node ./scripts/dev/fillLocales.js && pnpm intl:compile",
"intl:compile": "formatjs compile-folder --ast ./locales --format crowdin ./locales/compiled",
"intl:extract": "formatjs extract --format crowdin --out-file ./locales/en-US.json \"{app,pages}/**/*.tsx\"",
"start": "sh ./scripts/build/start.sh",
"test": "pnpm test:lint && pnpm test:type && pnpm test:unit",
"test:e2e": "playwright test -c ./config/playwright.config.ts",
"test:lint": "eslint --ext cjs,js,jsx,ts,tsx .",
"test:type": "tsc -p ./tsconfig.dev.json",
"test:unit": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --config=./config/jest.config.js --detectOpenHandles",
"test:unit:watch": "pnpm test:unit --watch"
},
"prisma": {
"seed": "node --experimental-json-modules -r dotenv/config ./prisma/seeds/index.js"
},
"dependencies": {
"@fontsource/poppins": "4.5.8",
"@ivangabriele/tsconfig-next": "1.2.2",
"@popperjs/core": "2.11.5",
"@prisma/client": "4.0.0",
"@reduxjs/toolkit": "1.8.3",
"@shopify/react-web-worker": "5.0.1",
"@singularity/core": "4.2.0",
"@swc/core": "1.2.197",
"@types/cors": "2.8.12",
"@types/formidable": "2.0.5",
"@types/glob": "7.2.0",
"@types/jest": "28.1.1",
"@types/js-cookie": "3.0.2",
"@types/lodash.debounce": "4.0.7",
"@types/minio": "7.0.13",
"@types/node": "18.0.6",
"@types/ramda": "0.28.13",
"@types/react": "18.0.14",
"@types/styled-components": "5.1.15",
"@types/zxcvbn": "4.4.1",
"ajv": "8.11.0",
"bhala": "3.0.4",
"cors": "2.8.5",
"csv-stringify": "6.2.3",
"cuid": "2.1.8",
"dayjs": "1.11.3",
"dotenv": "16.0.1",
"esm-path": "1.0.1",
"formidable": "2.0.1",
"formik": "2.2.9",
"js-cookie": "3.0.1",
"ky": "0.30.0",
"ky-universal": "0.10.0",
"lodash.debounce": "4.0.8",
"minio": "7.0.28",
"nexauth": "2.1.1",
"next": "12.1.6",
"numeral": "2.0.6",
"prisma": "4.0.0",
"ramda": "0.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-intl": "5.24.1",
"react-popper": "2.3.0",
"react-redux": "8.0.2",
"react-spinners": "0.12.0",
"react-toastify": "9.0.7",
"slugify": "1.6.3",
"styled-components": "5.3.3",
"type-fest": "2.13.1",
"typescript": "4.7.4",
"yup": "0.32.9",
"zxcvbn": "4.4.2"
},
"devDependencies": {
"@commitlint/cli": "17.0.0",
"@commitlint/config-conventional": "17.0.2",
"@formatjs/cli": "5.0.2",
"@ivangabriele/commitlint-config": "1.0.6",
"@ivangabriele/eslint-config-typescript-next": "4.1.1",
"@ivangabriele/prettier-config": "3.0.2",
"@jest/globals": "28.0.0",
"@playwright/test": "1.29.1",
"@swc/jest": "0.2.21",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.27.1",
"concurrently": "6.3.0",
"envinfo": "7.8.1",
"eslint": "8.17.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-formatjs": "2.18.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-jsx-a11y": "6.6.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-sort-destructure-keys": "1.4.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"fast-glob": "3.2.11",
"husky": "8.0.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"lint-staged": "13.0.2",
"nexe": "4.0.0-rc.1",
"nodemon": "2.0.14",
"prettier": "2.5.1",
"shelljs": "0.8.5",
"timezone-mock": "1.3.3"
},
"optionalDependencies": {
"@babel/core": "7.18.10",
"react-is": "18.2.0"
},
"lint-staged": {
"*.{cjs,js,jsx,ts,tsx}": "eslint --ext cjs,js,jsx,ts,tsx"
},
"prettier": "@ivangabriele/prettier-config"
}