This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
91 lines (91 loc) · 2.78 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
{
"name": "@khanacademy/math-input",
"publishConfig": {
"access": "public"
},
"version": "0.4.0",
"description": "",
"main": "build/math-input.js",
"files": [
"build/"
],
"scripts": {
"test": "jest",
"watch_test": "jest --watch",
"build": "webpack --config webpack.config.externals.js",
"watch": "webpack --config webpack.config.externals.js --watch",
"start": "webpack-dev-server --open",
"format": "prettier --write \"src/**\" \"test/**\" \"lib/**\"",
"prepare": "install-peers",
"prepublishOnly": "yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"author": "",
"license": "MIT",
"dependencies": {
"performance-now": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-backgrounds": "^5.3.14",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-viewport": "^5.3.17",
"@storybook/addons": "^5.3.14",
"@storybook/react": "^5.3.14",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "7.1.1",
"core-js": "^3.0.1",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"exports-loader": "^0.6.3",
"file-loader": "^4.0.0",
"flow-bin": "^0.166.0",
"flow-enums-runtime": "^0.0.6",
"html-webpack-plugin": "^3.2.0",
"install-peers-cli": "^2.2.0",
"jest": "24",
"jest-enzyme": "^7.1.2",
"jsdom": "^8.4.0",
"less": "^2.7.2",
"less-loader": "^5.0.0",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.19.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"peerDependencies": {
"@khanacademy/wonder-blocks-clickable": "^2.2.0",
"@khanacademy/wonder-blocks-color": "^1.1.19",
"@khanacademy/wonder-blocks-core": "^3.2.0",
"aphrodite": "^1.1.0",
"jquery": "^2.1.1",
"katex": "^0.11.1",
"mathquill": "git+https://git@github.com/Khan/mathquill.git#a9ae54e057c5c1acc8244a5627acbff29901d992",
"prop-types": "15.6.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-redux": "^7.2.6",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-transition-group": "^4.4.1",
"redux": "^4.0.0"
}
}