-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 3.95 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
{
"name": "open-discussions-root",
"private": true,
"workspaces": [
"frontends/*"
],
"scripts": {
"foreach-with-fallback": "yarn workspaces foreach --verbose --topological exec node ${PROJECT_CWD}/scripts/yarn-run-with-fallback.js $0 $1",
"start-dev": "yarn workspaces foreach --verbose --parallel --interlaced run start-dev",
"build": "yarn workspaces foreach run build",
"clean": "run foreach-with-fallback clean global:clean",
"lint-check": "run foreach-with-fallback lint-check global:lint-check",
"lint-fix": "run foreach-with-fallback lint-fix global:lint-fix",
"fmt-check": "run foreach-with-fallback fmt-check global:fmt-check",
"fmt-fix": "run foreach-with-fallback fmt-fix global:fmt-fix",
"test": "yarn global:test",
"test-watch": "yarn global:test-watch",
"scss-lint": "run foreach-with-fallback scss-lint global:scss-lint",
"scss-lint-fix": "run foreach-with-fallback scss-lint-fix global:scss-lint-fix",
"typecheck": "run foreach-with-fallback typecheck global:typecheck",
"global:clean": "cd $INIT_CWD && rimraf -rf build/ tsconfig.tsbuildinfo",
"global:coverage": "cd $INIT_CWD && yarn test --coverage",
"global:fmt-check": "cd $INIT_CWD && prettier-eslint --no-semi --list-different **/*.{ts,tsx,js,jsx}",
"global:fmt-fix": "cd $INIT_CWD && prettier-eslint **/*.{ts,tsx,js,jsx} --no-semi --write",
"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": "^5.16.4",
"@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": "^5.30.0",
"casual-browserify": "^1.5.19-2",
"css-mediaquery": "^0.1.2",
"eslint": "^8.18.0",
"eslint-config-mitodl": "^1.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": "^5.5.1",
"exec-sh": "^0.4.0",
"html-entities": "^2.3.3",
"iso-639-1": "^2.1.15",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^3.0.1",
"jest-fail-on-console": "^2.4.2",
"jest-watch-typeahead": "^2.2.2",
"jest-when": "^3.5.1",
"locale-code": "^2.0.2",
"prettier": "^2.8.3",
"prettier-eslint-cli": "^6.0.1",
"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",
"typescript": "^5.0.4",
"url-assembler": "^2.1.1"
}
}