forked from thinkingmachines/unicef-ai4d-research-bank
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.89 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
{
"name": "unicef-ai4d-ml-web-catalog",
"license": "MIT",
"private": true,
"version": "0.0.1",
"scripts": {
"build": "vite build",
"build:test-env": "NODE_ENV=test vite build",
"commit": "cz",
"dev": "vite --open",
"prepare": "husky install",
"preview": "vite preview",
"preview:test": "start-server-and-test preview http://127.0.0.1:4173/unicef-ai4d-ml-web-catalog/",
"test": "vitest",
"test:ci": "vitest run",
"test:e2e": "pnpm preview:test 'cypress open'",
"test:e2e:headless": "pnpm preview:test 'cypress run'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/unicef-ai4d-ml-web-catalog 'cypress run'",
"format": "prettier -uw --cache --ignore-path .gitignore .",
"run-tsc": "tsc",
"run-eslint": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.tsx .",
"run-stylelint": "stylelint --allow-empty-input --cache --fix --ignore-path .gitignore **/*.css",
"lint": "run-p run-tsc run-eslint run-stylelint",
"validate": "run-p lint test:ci test:e2e:headless",
"merge-catalog": "python scripts/transform_catalog.py && python scripts/transform_featured.py",
"validate-catalog": "python scripts/validate_catalog.py",
"force-validate-catalog": "python scripts/validate_catalog.py -f"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@tanstack/react-query": "4.26.0",
"antd": "^5.3.1",
"dayjs": "^1.11.7",
"github-markdown-css": "^5.2.0",
"rc-picker": "^3.3.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "6.8.2",
"remark-gfm": "^3.0.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"@nabla/vite-plugin-eslint": "1.5.0",
"@tailwindcss/forms": "0.5.3",
"@testing-library/cypress": "8.0.7",
"@testing-library/dom": "9.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/css-mediaquery": "0.1.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-router-dom": "5.3.3",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"@vitejs/plugin-react": "3.1.0",
"@vitest/coverage-istanbul": "0.29.2",
"autoprefixer": "10.4.13",
"commitizen": "4.3.0",
"css-mediaquery": "0.1.2",
"cypress": "10.11.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.35.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-prefer-function-component": "3.1.0",
"eslint-plugin-testing-library": "5.10.2",
"eslint-plugin-unicorn": "46.0.0",
"husky": "^8.0.3",
"jsdom": "21.1.0",
"lint-staged": "13.1.2",
"msw": "1.1.0",
"npm-run-all": "4.1.5",
"postcss": "8.4.21",
"prettier": "2.8.4",
"prettier-plugin-tailwindcss": "0.2.4",
"start-server-and-test": "1.15.5",
"stylelint": "15.2.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "30.0.1",
"tailwindcss": "3.2.7",
"typescript": "4.9.5",
"vite": "4.1.5",
"vite-plugin-pwa": "0.14.5",
"vite-tsconfig-paths": "4.0.5",
"vitest": "0.29.2",
"whatwg-fetch": "3.6.2",
"workbox-build": "6.5.4",
"workbox-window": "6.5.4"
},
"browserslist": {
"production": "Edge >= 18, Firefox >= 60, Chrome >= 61, Safari >= 11, Opera >= 48",
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"lint-staged": {
"*": "prettier -uw --cache",
"*.css": "stylelint --allow-empty-input --cache --fix",
"*.{ts,tsx}": [
"eslint --cache --fix",
"vitest related --run --coverage=false"
]
},
"pnpm": {
"overrides": {
"headers-polyfill": "3.1.2"
}
}
}