-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.48 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.48 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
{
"name": "bsa19-stage-2",
"private": true,
"description": "",
"version": "0.1.0",
"author": "",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.18",
"@fortawesome/free-brands-svg-icons": "5.8.2",
"@fortawesome/free-regular-svg-icons": "5.8.2",
"@fortawesome/free-solid-svg-icons": "5.8.2",
"@fortawesome/pro-light-svg-icons": "5.8.2",
"@fortawesome/pro-regular-svg-icons": "5.8.2",
"@fortawesome/pro-solid-svg-icons": "5.8.2",
"@fortawesome/react-fontawesome": "0.1.4",
"@mdx-js/mdx": "1.0.18",
"@mdx-js/react": "1.0.16",
"@mdx-js/tag": "0.20.3",
"chart.js": "2.8.0",
"chartjs-plugin-dragdata": "0.3.1",
"classnames": "2.2.6",
"gatsby": "2.4.2",
"gatsby-image": "2.0.41",
"gatsby-mdx": "0.6.3",
"gatsby-plugin-google-analytics": "2.0.19",
"gatsby-plugin-manifest": "2.1.1",
"gatsby-plugin-offline": "2.1.0",
"gatsby-plugin-react-helmet": "3.0.12",
"gatsby-plugin-sass": "2.0.11",
"gatsby-plugin-sharp": "2.0.36",
"gatsby-remark-prismjs": "3.2.9",
"gatsby-source-filesystem": "2.0.33",
"gatsby-transformer-remark": "2.3.12",
"gatsby-transformer-sharp": "2.1.19",
"lodash": "4.17.11",
"node-sass": "4.12.0",
"prism-themes": "1.1.0",
"prismjs": "1.16.0",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-copy-to-clipboard": "5.0.1",
"react-dom": "16.8.6",
"react-helmet": "5.2.1",
"react-markdown": "4.0.8",
"react-reactions": "randomdipesh/react-reactions",
"spectre.css": "0.5.8"
},
"devDependencies": {
"gh-pages": "2.0.1",
"husky": "2.2.0",
"lint-staged": "8.1.6",
"prettier": "1.17.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"prettify": "prettier --write {src/**/*.{js,jsx,json,css,scss},gatsby*.js}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"predeploy": "gatsby clean && gatsby build --prefix-paths",
"deploy": "gh-pages -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/volodymyr-kushnir/lectures"
},
"bugs": {
"url": "https://github.com/volodymyr-kushnir/lectures/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,scss},gatsby*.js": [
"prettier --write",
"git add"
]
}
}