This repository was archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.28 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.28 KB
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
{
"name": "math-share",
"version": "1.0.0",
"description": "This is a step by step editor built on top of mathlive.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --stage=local --open",
"debug": "webpack-dev-server --mode development --open --env.debug",
"build": "cd v2 && npm install && webpack --mode production --stage=production && cd ../ && webpack --mode production --stage=production",
"build_qa": "cd v2 && npm install && webpack --mode production --stage=qa && cd ../ && webpack --mode production --stage=qa",
"build_staging": "webpack --mode production --stage=staging",
"axe_audit": "node axe/index.js",
"json_server": "json-server dummy_api/db.json --routes dummy_api/routes.json --port 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benetech/MathShare.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/benetech/MathShare/issues"
},
"homepage": "https://github.com/benetech/MathShare#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"axe-puppeteer": "^1.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"dotenv": "^8.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^5.16.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"json-server": "^0.16.1",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.14.1",
"puppeteer": "^1.20.0",
"react-axe": "^3.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@simonwep/pickr": "^1.0.0",
"axios": "^0.21.1",
"bootstrap": "^4.2.1",
"classnames": "^2.2.6",
"connected-react-router": "^6.5.2",
"copy-webpack-plugin": "^5.1.0",
"dayjs": "^1.8.14",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"history": "^4.9.0",
"howler": "^2.2.0",
"intro.js": "^2.9.3",
"jquery": "^3.5.0",
"lodash": "^4.17.19",
"msal": "^1.1.1",
"react": "^16.8.6",
"react-aria-live": "^2.0.5",
"react-aria-modal": "^3.0.1",
"react-device-detect": "^1.9.10",
"react-dom": "^16.8.6",
"react-fontawesome": "^1.6.1",
"react-ga": "^2.5.7",
"react-helmet": "^5.2.1",
"react-hotkeys": "^2.0.0",
"react-intercom": "^1.0.15",
"react-localization": "^1.0.13",
"react-redux": "^7.0.3",
"react-router-dom": "^4.3.1",
"react-sortable-hoc": "^0.8.4",
"react-toastify": "^5.4.0",
"reactour": "^1.13.4",
"reactstrap": "^7.1.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.2",
"speech-rule-engine": "^2.4.0",
"styled-components": "^4.2.0",
"watson-speech": "^0.38.2"
}
}