-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "math-toolbelt",
"private": true,
"description": "Helpful math tools based on high school math concepts",
"author": "Adam Schay (https://github.com/hoobdeebla)",
"contributors": [
"Matthew Martori (https://github.com/matttt)"
],
"scripts": {
"build": "gatsby build --prefix-paths",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "eslint --fix .",
"start": "npm run develop",
"serve": "gatsby serve --prefix-paths",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -m 'Publish (auto-generated)'"
},
"dependencies": {
"asciimath2tex": "^1.1.0",
"bootstrap": "^4.5.0",
"gatsby": "^2.23.20",
"gatsby-plugin-manifest": "^2.4.17",
"gatsby-plugin-offline": "^3.2.16",
"gatsby-plugin-react-helmet": "^3.3.9",
"gatsby-source-filesystem": "^2.3.18",
"jquery": "^3.5.1",
"katex": "^0.11.1",
"popper.js": "^1.16.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-latex": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.1.0"
}
}