-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.11 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.11 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
{
"name": "algorithm-visualizer",
"private": true,
"description": "Algorithm visualizer app built with React and Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md,ts,.tsx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"gh-page:deploy": "gh-pages -d public -b master -r https://github.com/ds-algorithm-visualizer/ds-algorithm-visualizer.github.io.git",
"gh-page-clean": "gh-pages-clean",
"copy":"copyfiles .nojekyll ./public",
"deploy":"gatsby build && npm run copy && npm run gh-page:deploy"
},
"dependencies": {
"@deckdeckgo/highlight-code": "^1.1.0",
"@hot-loader/react-dom": "^16.13.0",
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"classnames": "^2.2.6",
"copyfiles": "^2.3.0",
"gatsby": "^2.22.15",
"gatsby-plugin-material-ui": "^2.1.9",
"gatsby-plugin-postcss": "^2.3.2",
"gatsby-remark-highlight-code": "^1.4.0",
"gatsby-theme-material-ui": "^1.0.10",
"gh-pages": "^2.2.0",
"react": "^16.12.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-remark": "^2.8.13",
"prettier": "2.0.5",
"tailwindcss": "^1.4.6",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}