-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.86 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.86 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": "algorithmx-website",
"version": "1.0.0",
"description": "AlgorithmX Website.",
"private": true,
"author": {
"name": "Alex Socha"
},
"license": "MIT",
"scripts": {
"dev": "npx gatsby develop",
"build": "npx gatsby build",
"serve": "npx gatsby serve",
"typecheck": "npx tsc --noEmit",
"format": "npx prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@babel/standalone": "7.12.7",
"@fortawesome/fontawesome-free": "5.15.1",
"algorithmx": "^2.0.2",
"babel-plugin-prismjs": "2.0.1",
"babel-preset-gatsby": "0.7.0",
"domino": "2.1.6",
"gatsby": "2.27.0",
"gatsby-plugin-favicon": "3.1.6",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-react-helmet": "3.5.0",
"gatsby-plugin-react-svg": "3.0.0",
"gatsby-plugin-sass": "2.6.0",
"gatsby-plugin-typescript": "2.7.0",
"gatsby-source-filesystem": "2.6.0",
"gatsby-transformer-json": "2.6.0",
"gatsby-transformer-remark": "2.11.0",
"js-yaml": "3.14.0",
"node-sass": "^4.0.0",
"prismjs": "1.23.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "6.1.0",
"react-redux": "7.2.2",
"redux": "4.0.5"
},
"devDependencies": {
"@types/js-yaml": "3.12.5",
"@types/node": "14.14.9",
"@types/prismjs": "1.16.2",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.0",
"@types/react-helmet": "6.1.0",
"@types/react-redux": "7.1.11",
"husky": "4.3.0",
"prettier": "2.2.0",
"pretty-quick": "3.1.0",
"ts-node": "9.0.0",
"typescript": "4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}