-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "ds-101-workshop",
"version": "0.0.0-development",
"description": "Design Systems 101 Workshop",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"posttest": "npm run format",
"start": "gatsby develop",
"build": "gatsby clean && gatsby build --prefix-paths",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md,mdx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/component-driven/ds-101-workshop.git"
},
"keywords": [],
"author": "Andrey Okonetchnikov <[email protected]>",
"license": "CC AT-NC 4.0",
"bugs": {
"url": "https://github.com/component-driven/ds-101-workshop/issues"
},
"homepage": "https://github.com/component-driven/ds-101-workshop#readme",
"dependencies": {
"@component-driven/mdx-deck-theme": "^2.0.1",
"mdx-deck": "^4.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"gatsby": "^2.21.33",
"gatsby-plugin-compile-es6-packages": "2.1.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-source-figma": "^1.1.0",
"gatsby-theme-mdx-deck": "^4.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4",
"react-refresh": "^0.8.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,md,mdx}": "prettier --write"
}
}