-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
152 lines (152 loc) · 4.72 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "iodide",
"version": "0.0.3",
"description": "A notebook-style interface for literate programming in javascript.",
"main": "index.jsx",
"author": "Iodide Project Team",
"license": "MPL-2.0",
"browserslist": "> 0.25%, not dead",
"engines": {
"node": "12.x"
},
"scripts": {
"test": "jest --no-cache",
"test-coverage": "jest --no-cache --coverage",
"simple-serve": "webpack-dev-server --watch --mode=development --env.NODE_ENV=dev",
"start": "webpack --watch --mode=development --env.NODE_ENV=dev",
"build": "webpack -p",
"lint": "eslint src/ test/ --ext=.js --ext=.jsx -f unix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"coverageDirectory": ".coverage",
"setupFilesAfterEnv": [
"<rootDir>/test/setupTests.js"
],
"transformIgnorePatterns": [
"/node_modules/(?!test-component).+\\.js$"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/fileMock.js",
"\\.(css|less)$": "<rootDir>/test/styleMock.js",
"monaco-editor/esm/vs/editor/editor.api": "<rootDir>/test/monaco-mock.js",
"revision-diff-content": "identity-obj-proxy"
},
"globals": {
"window": true,
"USE_LOCAL_PYODIDE": false
},
"globalSetup": "./test/global-setup.js",
"setupFiles": [
"jest-localstorage-mock",
"<rootDir>/test/globals-test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
]
},
"dependencies": {
"@emotion/core": "10.0.27",
"@emotion/styled": "10.0.27",
"@iktakahiro/markdown-it-katex": "3.1.0",
"@material-ui/core": "3.9.4",
"@material-ui/icons": "3.0.2",
"ajv": "6.12.2",
"css-element-queries": "1.2.3",
"date-fns": "2.14.0",
"debounce-action": "0.1.0",
"dexie": "3.0.1",
"dompurify": "2.0.17",
"emotion": "10.0.27",
"error-stack-parser": "2.0.6",
"eslint-config-prettier": "6.11.0",
"font-awesome": "4.7.0",
"golden-layout": "1.5.9",
"jss": "10.1.1",
"lodash": "4.17.19",
"lz-string": "1.4.4",
"markdown-it": "11.0.0",
"markdown-it-anchor": "5.3.0",
"markdown-it-emoji": "1.4.0",
"monaco-editor": "0.20.0",
"mousetrap": "1.6.5",
"numeral": "2.0.6",
"opensans-npm-webfont": "1.0.0",
"prop-types": "15.7.2",
"query-string": "6.12.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet-async": "1.0.6",
"react-jss": "8.6.1",
"react-popper": "1.3.7",
"react-redux": "7.2.0",
"react-table": "6.11.5",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-saga": "1.1.3",
"redux-thunk": "2.3.0",
"stackframe": "1.1.1",
"throttle-action": "0.1.0",
"universal-router": "9.0.1"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-modules-commonjs": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-links": "5.3.19",
"@storybook/addon-storyshots": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/react": "5.3.19",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.5.1",
"babel-loader": "8.1.0",
"babel-plugin-emotion": "10.0.27",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-macros": "2.8.0",
"circular-dependency-plugin": "5.2.0",
"css-loader": "3.5.3",
"dotenv": "8.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "7.2.0",
"eslint-config-airbnb": "16.1.0",
"eslint-loader": "4.0.2",
"eslint-plugin-emotion": "10.0.27",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"fake-indexeddb": "3.0.1",
"file-loader": "6.0.0",
"git-revision-webpack-plugin": "3.0.6",
"identity-obj-proxy": "3.0.0",
"jest": "25.5.4",
"jest-cli": "25.5.4",
"jest-fetch-mock": "3.0.3",
"jest-localstorage-mock": "2.4.2",
"jquery": "3.5.1",
"lodash-webpack-plugin": "0.11.5",
"mini-css-extract-plugin": "0.9.0",
"prettier": "1.19.1",
"raw-loader": "4.0.1",
"react-test-renderer": "16.13.1",
"redux-mock-store": "1.5.4",
"redux-saga-test-plan": "4.0.0-rc.3",
"require-context.macro": "1.2.2",
"style-loader": "1.2.1",
"terser-webpack-plugin": "3.0.2",
"unused-webpack-plugin": "2.4.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2",
"write-file-webpack-plugin": "4.5.1"
}
}