forked from Khan/perseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 4.44 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
{
"name": "perseus",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:Khan/perseus.git",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"config/build"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.16.5",
"@babel/eslint-plugin": "^7.17.7",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.0",
"@changesets/cli": "^2.22.0",
"@cypress/code-coverage": "^3.9.12",
"@cypress/react": "^5.12.5",
"@cypress/webpack-dev-server": "^1.8.4",
"@khanacademy/eslint-config": "^0.2.0",
"@khanacademy/wonder-stuff-i18n": "^1.1.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-replace": "^4.0.0",
"@sheerun/mutationobserver-shim": "^0.3.3",
"@storybook/addon-a11y": "^6.4.19",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.4.19",
"@storybook/react": "^6.4.19",
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.1.9",
"ancesdir": "^3.1.0",
"babel-jest": "28",
"babel-loader": "^8.0.5",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-transform-flow-enums": "^0.0.2",
"cross-env": "^5.2.0",
"cypress": "^9.6.1",
"cypress-jest-adapter": "^0.1.1",
"cypress-wait-until": "^1.7.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-monorepo": "^0.3.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-native": "^3.10.0",
"eslint-plugin-storybook": "^0.5.7",
"eslint-plugin-testing-library": "^5.0.0",
"fast-glob": "^3.2.11",
"flow-bin": "^0.176.2",
"flow-enums-runtime": "^0.0.6",
"jest": "28",
"jest-environment-jsdom": "^28.0.2",
"jest-enzyme": "^7.1.2",
"jest-extended": "^2.0.0",
"jest-serializer-html": "^7.1.0",
"jest-specific-snapshot": "^5.0.0",
"katex": "^0.11.1",
"less": "~3.0.0",
"less-loader": "^4",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"react-json-view": "^1.19.1",
"react-redux": "^7.2.6",
"react-router": "5.2.1",
"react-router-dom": "5.3.0",
"react-transition-group": "^4.4.1",
"react-window": "^1.8.5",
"rollup": "^2.70.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-executable-output": "^1.3.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-styles": "^4.0.0",
"sloc": "^0.2.1",
"webpack-dev-server": "^4.9.0",
"winston": "^3.7.2"
},
"scripts": {
"gen:parsers": "yarn --cwd packages/kas gen:parsers",
"build": "yarn gen:parsers && rollup -c config/build/rollup.config.js",
"build:prodsizecheck": "yarn gen:parsers && rollup -c config/build/rollup.config.js --configEnvironment='production'",
"watch": "rollup -c config/build/rollup.config.js --watch",
"clean": "rm -rf packages/*/dist && rm -rf packages/*/node_modules && rm -rf .nyc_output",
"coverage": "yarn run jest --coverage",
"extract-strings": "./utils/extract-strings.js",
"flow:ci": "flow check --max-workers 0",
"lint": "eslint --config .eslintrc.js . --ext .js --ext .jsx",
"lint:timing": "cross-env TIMING=1 yarn lint",
"publish:ci": "node utils/pre-publish-check-ci.js && git diff --stat --exit-code HEAD && yarn build && yarn extract-strings && changeset publish",
"sloc": "sloc packages --exclude node_modules",
"test": "yarn jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cypress": "cypress open-ct",
"cypress:ci": "cross-env BABEL_COVERAGE=1 cypress run-ct --env CYPRESS_COVERAGE=1"
}
}