This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
69 lines (69 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "styleguidist-site",
"version": "0.0.0",
"private": true,
"author": {
"name": "Artem Sapegin",
"url": "http://sapegin.me"
},
"homepage": "https://github.com/styleguidist/site",
"repository": "styleguidist/site",
"license": "See license in <Readme.md>",
"engines": {
"node": ">=6"
},
"scripts": {
"pretest": "npm run lint && npm run lint:css",
"test": "true",
"posttest": "npm run format",
"lint": "eslint . --cache --fix --ext .js,.jsx",
"lint:css": "stylelint --fix '**/*.pcss'",
"start": "tamia server & npm run build:watch",
"sync": "./scripts/sync.sh",
"deploy": "./scripts/deploy.sh",
"bundle": "tamia bundle",
"prebuild": "mkdir -p public/build && touch public/build/styles.css",
"build": "BABEL_DISABLE_CACHE=1 babel-node src",
"build:watch": "chokidar source 'templates/**/*.jsx' -c 'BABEL_DISABLE_CACHE=1 babel-node src'",
"format": "prettier --write \"**/*.{js,jsx,pcss,md}\"",
"precommit": "lint-staged"
},
"dependencies": {
"highlight.js": "^9.12.0",
"tamia": "^3.0.0-aplha.13"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-register": "^6.24.1",
"chokidar-cli": "^1.2.2",
"classnames": "^2.2.5",
"eslint": "^5.8.0",
"eslint-config-tamia": "^6.0.2",
"eslint-plugin-react": "^7.11.1",
"fledermaus": "^7.0.0",
"github-slugger": "^1.1.3",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"lodash": "^4.17.13",
"prettier": "^1.14.3",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.1.0",
"tamia-build": "^1.3.0",
"unist-util-visit": "^1.1.3"
},
"lint-staged": {
"*.{js,jsx,pcss,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.pcss": [
"stylelint --fix",
"git add"
]
}
}