-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.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
{
"name": "root",
"private": true,
"workspaces": [
"frontends/*"
],
"scripts": {
"foreach": "yarn workspaces foreach -pvi --exclude=root run",
"start-dev": "yarn workspaces foreach -pvi run start-dev",
"build": "yarn workspaces foreach run build",
"lint-check": "yarn foreach global:lint-check",
"lint-fix": "yarn foreach global:lint-fix",
"fmt-check": "prettier --check .",
"fmt-fix": "prettier --write .",
"test": "yarn global:test",
"test-watch": "yarn global:test-watch",
"scss-lint": "yarn foreach global:scss-lint",
"scss-lint-fix": "yarn foreach global:scss-lint-fix",
"typecheck": "yarn foreach global:typecheck",
"global:lint-check": "cd $INIT_CWD && eslint . --ext .js,.jsx,.ts,.tsx",
"global:scss-lint": "cd $INIT_CWD && stylelint '**/*.scss' --allow-empty-input",
"global:scss-lint-fix": "cd $INIT_CWD && stylelint '**/*.scss' --allow-empty-input --fix",
"global:lint-fix": "cd $INIT_CWD && eslint --fix . --ext .js,.jsx,.ts,.tsx",
"global:test": "cd $INIT_CWD && NODE_ENV=test jest",
"global:typecheck": "cd $INIT_CWD && tsc --noEmit",
"global:test-watch": "cd $INIT_CWD && NODE_ENV=test jest --watch",
"create-package": "yarn workspace ol-template plop package"
},
"version": "0.0.0",
"packageManager": "[email protected]",
"dependencies": {
"@ebay/nice-modal-react": "^1.2.10",
"@swc/core": "^1.3.32",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/css-mediaquery": "^0.1.1",
"@types/jest": "^29.5.2",
"@types/jest-when": "^3.5.2",
"@types/react-dotdotdot": "^1.2.5",
"@types/react-infinite-scroller": "^1.2.3",
"@types/styled-components": "^5.1.25",
"@types/url-assembler": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"casual-browserify": "^1.5.19-2",
"css-mediaquery": "^0.1.2",
"eslint": "^9.0.0",
"eslint-config-mitodl": "^1.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.0",
"exec-sh": "^0.4.0",
"html-entities": "^2.3.3",
"iso-639-1": "^3.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^4.0.0",
"jest-fail-on-console": "^2.4.2",
"jest-watch-typeahead": "^2.2.2",
"jest-when": "^3.5.1",
"locale-code": "^2.0.2",
"prettier": "^3.0.3",
"prettier-plugin-django-alpine": "^1.2.6",
"query-string": "^7.1.1",
"rc-tooltip": "^5.2.2",
"react-appzi": "^1.0.4",
"react-share": "^4.4.0",
"rimraf": "^3.0.2",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"swc-loader": "^0.2.3",
"tiny-invariant": "^1.3.1",
"ts-node": "^10.9.1",
"type-fest": "^4.8.1",
"typescript": "^5.1.6",
"url-assembler": "^2.1.1"
}
}