-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.07 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
122
123
124
125
126
{
"name": "gamut",
"private": true,
"description": "Modules and components for Codecademy",
"version": "1.2.0",
"license": "MIT",
"author": "Codecademy Engineers <[email protected]>",
"engines": {
"node": "^14.7",
"yarn": "^1.21.1"
},
"scripts": {
"test": "jest",
"lint": "eslint --ignore-path .eslintignore \"./**/*.{mdx,js,ts,tsx,json}\" --max-warnings 0",
"lint:fix": "yarn lint --fix",
"lerna": "lerna",
"prettier": "prettier --ignore-path .prettierignore \"./**/*.{mdx,js,ts,tsx,json,css,scss}\"",
"format": "yarn lint:fix && yarn prettier --write",
"format:verify": "yarn prettier --check",
"verify-all": "lerna run verify",
"verify-changed": "lerna run verify --since --include-dependencies",
"clear-modules": "lerna clean -y && rm -rf node_modules",
"build-all": "lerna run lernaBuildTask",
"build-changed": "lerna run lernaBuildTask --since --include-dependencies",
"start": "yarn && yarn start:storybook",
"start:storybook": "cd ./packages/styleguide && yarn start",
"build-storybook": "cd ./packages/styleguide && yarn build-storybook",
"deploy": "cp -r ./dist/static/* ./dist/docs && gh-pages -b gh-pages -d dist"
},
"lint-staged": {
"**/*.{mdx,js,ts,tsx,json}": [
"node_modules/@codecademy/eslint-config/bin/eslint-fix.js",
"prettier --ignore-path .prettierignore --write"
],
"**/*.{css,scss}": [
"prettier --ignore-path .prettierignore --write"
]
},
"repository": {
"type": "git",
"url": "[email protected]:Codecademy/gamut.git"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@storybook",
"**/@storybook/**",
"**/storybook-*",
"**/storybook-*/**"
]
},
"dependencies": {
"conventional-changelog-cli": "^2.0.34",
"conventional-changelog-conventionalcommits": "^4.3.0",
"gh-pages": "^2.2.0",
"lerna": "3.22.1"
},
"devDependencies": {
"@babel/cli": "7.13.10",
"@babel/core": "7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@codecademy/eslint-config": "^5.4.0",
"@codecademy/prettier-config": "^0.1.10",
"@codecademy/tsconfig": "^0.2.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": "^7.31.2",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^5.1.0",
"@testing-library/user-event": "^13.1.9",
"@types/classnames": "2.2.10",
"@types/enzyme": "3.10.7",
"@types/invariant": "2.2.29",
"@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": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-jest": "26.6.3",
"babel-plugin-macros": "3.0.1",
"babel-preset-codecademy": "2.3.0",
"component-test-setup": "^0.3.1",
"core-js": "3.7.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"enzyme-to-json": "3.3.5",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jest-react": "^0.0.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-local-rules": "^1.1.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.4",
"husky": "4.2.5",
"identity-obj-proxy": "3.0.0",
"jest": "^26.6.3",
"jest-environment-jsdom": "^26.6.2",
"jest-environment-jsdom-global": "2.0.4",
"jest-junit": "^12.0.0",
"lint-staged": "10.4.0",
"mutationobserver-shim": "^0.3.3",
"prettier": "2.2.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"react-test-renderer": "16.13.1",
"typescript": "4.4.2"
},
"husky": {
"skipCI": false,
"hooks": {
"pre-commit": "lint-staged"
}
}
}