-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2 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
{
"name": "gatsby-octoprint-status",
"private": true,
"description": "A lightweight alternative way to monitor your OctoPrint server.",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"deploy-github": "gatsby clean && gatsby build && gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx"
},
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"gatsby": "^2.20.23",
"gatsby-plugin-react-helmet": "^3.2.3",
"gatsby-plugin-typescript": "^2.3.2",
"object-assign-defined": "^1.0.2",
"qs": "^6.9.3",
"query-string": "^6.12.1",
"react": "^16.13.1",
"react-compound-timer": "^1.2.0",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-moment": "^0.9.7",
"react-pose": "^4.0.10",
"store2": "^2.11.1",
"url-parse": "^1.4.7",
"url-regex": "^5.0.0",
"use-debounce": "^3.4.1"
},
"devDependencies": {
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-helmet": "^5.0.15",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-typescript-sort-keys": "^0.8.0",
"gh-pages": "^2.2.0",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/alexleekt/gatsby-octoprint-status"
},
"bugs": {
"url": "https://github.com/alexleekt/gatsby-octoprint-status/issues"
}
}