-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"name": "design-for-developers-workshop",
"version": "0.0.0-development",
"description": "Slides and exercises for the \"Design for Developers\" workshop",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"posttest": "npm run format",
"start": "mdx-deck src/index.mdx",
"generate": "split-guide generate",
"browsersync": "browser-sync start --server \"./exercises-final/exercise-01\" --files \"templates/**/*.css\"",
"server": "./scripts/server.js",
"format": "prettier --write \"**/*.{js,css,md}\"",
"split-guide": "split-guide generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/component-driven/design-for-developers-workshop.git"
},
"keywords": [],
"author": "Andrey Okonetchnikov <andrey@okonet.ru>",
"license": "(GPL-3.0 OR CC BY-NC 4.0)",
"bugs": {
"url": "https://github.com/component-driven/design-for-developers-workshop/issues"
},
"homepage": "https://github.com/component-driven/design-for-developers-workshop#readme",
"dependencies": {
"mdx-deck": "^2.3.2"
},
"devDependencies": {
"browser-sync": "^2.26.5",
"husky": "^2.2.0",
"lint-staged": ">=8",
"prettier": "^1.17.1",
"split-guide": "component-driven/split-guide#feat-css-syntax"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,mdx?}": [
"prettier --write",
"git add"
]
}
}