-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.66 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
{
"name": "client-modules",
"private": true,
"description": "Modules and components for Codecademy",
"version": "1.2.0",
"license": "MIT",
"author": "Codecademy Engineers <[email protected]>",
"engines": {
"node": "^16.17",
"yarn": "^1.22"
},
"scripts": {
"test": "jest",
"test:ci": "yarn test --ci --runInBand --coverage --reporters='default' --reporters='jest-junit'",
"lint": "eslint --ignore-path .eslintignore \"./**/*.{js,ts,tsx,json}\" --max-warnings 0",
"lint:fix": "yarn lint --fix",
"lerna": "lerna",
"prettier": "prettier --ignore-path .prettierignore \"./**/*.{js,ts,tsx,json}\"",
"format": "yarn lint:fix && yarn prettier --write",
"format:verify": "yarn prettier --check",
"compile": "yarn verify",
"verify": "turbo run verify --concurrency=3",
"verify-all": "yarn verify",
"clear-modules": "lerna clean -y && rm -rf node_modules",
"build": "turbo run build --concurrency=3",
"build-all": "yarn build",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js,ts,tsx,json}": [
"eslint-fix",
"prettier --ignore-path .prettierignore --write"
]
},
"repository": {
"type": "git",
"url": "[email protected]:Codecademy/client-modules.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"conventional-changelog-cli": "^2.0.34",
"conventional-changelog-conventionalcommits": "^4.3.0",
"gh-pages": "^5.0.0",
"lerna": "3.22.1"
},
"devDependencies": {
"auto": "^11.1.6",
"@auto-it/all-contributors": "^11.0.4",
"@auto-it/first-time-contributor": "^11.0.4",
"@auto-it/npm": "^11.0.4",
"@auto-it/released": "^11.0.4",
"@babel/cli": "7.13.10",
"@babel/core": "7.19.6",
"@babel/preset-typescript": "^7.13.0",
"@codecademy/webpack-config": "^6.0.0",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/jest": "^11.3.0",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "2.3.1",
"@types/enzyme": "3.10.13",
"@types/invariant": "2.2.35",
"@types/konami-code-js": "^0.8.0",
"@types/lodash": "4.14.168",
"@types/react": "^16.9",
"@types/react-dom": "^16.9",
"@types/stylis": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-jest": "29.6.4",
"babel-plugin-macros": "3.1.0",
"babel-preset-codecademy": "2.3.0",
"component-test-setup": "^0.3.1",
"core-js": "3.32.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"enzyme-to-json": "3.6.2",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-jest-react": "^0.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"husky": "^8.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-environment-jsdom-global": "4.0.0",
"jest-junit": "^16.0.0",
"lint-staged": "14.0.1",
"mutationobserver-shim": "^0.3.3",
"prettier": "3.0.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-test-renderer": "18.2.0",
"turbo": "^1.1.2",
"typescript": "4.4.2"
},
"packageManager": "[email protected]"
}