-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "docz-plugin-css",
"version": "0.11.0",
"description": "This package makes it possible to use preprocessors and css modules on docz",
"license": "MIT",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"typings": "dist/index.d.ts",
"source": "src/index.ts",
"homepage": "https://docz.site",
"repository": {
"type": "git",
"url": "git://github.com/pedronauck/docz-plugin-css.git"
},
"bugs": {
"url": "https://github.com/pedronauck/docz-plugin-css/issues"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"scripts": {
"dev": "libundler watch --ts",
"build": "libundler build --ts --c",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
"fix:tslint": "tslint --fix --project .",
"tslint": "tslint --project ."
},
"dependencies": {
"autoprefixer": "^9.1.5",
"css-loader": "^1.0.0",
"deepmerge": "^2.1.1",
"docz-core": "^0.11.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"loader-utils": "^1.1.0",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss": "^7.0.2",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.17.2",
"webpack-chain": "^4.10.0"
},
"devDependencies": {
"libundler": "^1.7.1",
"lint-staged": "^7.2.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.2",
"trash-cli": "^1.4.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^2.9.2"
}
}