-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.99 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
{
"name": "frontends",
"private": true,
"workspaces": [
"api",
"main",
"ol-common",
"ol-components",
"ol-template",
"ol-test-utilities",
"ol-utilities"
],
"scripts": {
"watch": "yarn workspace mit-learn watch",
"watch:docker": "yarn workspace mit-learn watch:docker",
"build": "yarn workspace mit-learn build",
"lint-check": "eslint . --ext .js,.jsx,.ts,.tsx,.mdx",
"lint-fix": "yarn lint-check --fix",
"fmt-check": "prettier --ignore-path ../.gitignore --ignore-path ../.prettierignore --check .",
"fmt-fix": "prettier --ignore-path ../.gitignore --ignore-path ../.prettierignore --write .",
"test": "yarn global:test",
"test-watch": "yarn global:test-watch",
"style-lint": "yarn in-workspaces run global:style-lint",
"style-lint-fix": "yarn in-workspaces run global:style-lint-fix",
"typecheck": "yarn in-workspaces run global:typecheck",
"global:style-lint": "cd $INIT_CWD && stylelint '**/*.{css,scss,ts,tsx}' --allow-empty-input",
"global:style-lint-fix": "cd $INIT_CWD && stylelint '**/*.{css,scss,ts,tsx}' --allow-empty-input --fix",
"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",
"storybook": "yarn workspace main storybook",
"build-storybook": "yarn workspace main build-storybook",
"in-workspaces": "yarn workspaces foreach -A --exclude . --exclude frontends"
},
"version": "0.0.0",
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.7",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.26",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/css-mediaquery": "^0.1.1",
"@types/jest": "^29.5.2",
"@types/jest-when": "^3.5.2",
"@types/react-infinite-scroller": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/typescript-estree": "^8.0.0",
"cross-fetch": "^4.0.0",
"eslint": "8.57.1",
"eslint-config-mitodl": "^2.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-mdx": "^3.0.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-styled-components-a11y": "^2.1.35",
"eslint-plugin-testing-library": "^7.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.5.0",
"jest-extended": "^4.0.2",
"jest-fail-on-console": "^3.3.1",
"jest-watch-typeahead": "^2.2.2",
"jest-when": "^3.6.0",
"postcss-styled-syntax": "^0.7.0",
"prettier": "^3.3.3",
"prettier-plugin-django-alpine": "^1.2.6",
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^7.0.1",
"ts-node": "^10.9.2",
"type-fest": "^4.18.3",
"typescript": "^5.4.3"
}
}