This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 3.35 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dekk",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=6 <9",
"npm": ">=3 <6"
},
"description": "A presentation tool written in react.js",
"license": "MIT",
"author": "Gregor Adams <greg@pixelass.com>",
"repository": "git@github.com:sinnerschrader/dekk.git",
"scripts": {
"babel:packages": "yarn run clean:lib && lerna run babel",
"babel:packages:watch": "lerna run babel:watch --parallel",
"bootstrap:packages": "lerna bootstrap",
"build": "cross-env NODE_ENV=production webpack",
"clean:packages": "yarn run clean:lib",
"clean:jsdoc": "rimraf manual/jsdoc/*.md",
"clean:manual": "rimraf docs/manual",
"clean:modules": "rimraf **/node_modules ; rimraf @dekk/*/node_modules",
"clean:lib": "rimraf @dekk/*/lib",
"clean:all": "yarn run clean:modules ; yarn run clean:packages",
"commitmsg": "commitlint -e $GIT_PARAMS",
"develop": "node ./scripts/watch",
"docs": "open docs/manual/index.html",
"docgen": "yarn run clean:jsdoc && node ./scripts/docgen",
"reset:docs": "rimraf docs && git checkout docs",
"refresh:modules": "yarn run clean:modules docs && yarn",
"refresh:all": "yarn run clean:all docs && yarn && lerna bootstrap",
"format:js": "lerna run format:js",
"lint": "lerna run lint --concurrency",
"prerelease": "yarn run test && yarn run babel:packages",
"release": "lerna publish --conventional-commits --force-publish=*",
"release:prerelease": "yarn run prerelease && lerna publish --conventional-commits --cd-version=prerelease --force-publish=*",
"serve:docs": "http-server docs/",
"prepush": "yarn run test",
"test": "lerna run test --concurrency",
"patternplate:watch": "yarn run babel:packages && node ./scripts/patternplate",
"patternplate:build": "yarn run clean:manual && yarn run docgen && patternplate build --out 'docs/manual' --base 'dekk/manual'",
"patternplate": "patternplate",
"watch": "webpack-dev-server --hot"
},
"dependencies": {
"react": "16.2.0",
"react-dom": "16.2.0",
"styled-components": "3.2.3"
},
"devDependencies": {
"@commitlint/cli": "6.1.3",
"@commitlint/config-conventional": "6.1.3",
"@patternplate/cli": "2.0.0-88",
"@patternplate/render-styled-components": "2.0.0-88",
"@patternplate/widgets": "2.0.0-88",
"all-contributors-cli": "^4.11.1",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-plugin-styled-components": "1.5.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"cross-env": "5.1.4",
"documentation": "6.1.0",
"eslint": "4.19.1",
"eslint-config-xo-react": "0.16.0",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"execa": "0.10.0",
"favicons-webpack-plugin": "0.0.8",
"file-loader": "1.1.11",
"globby": "8.0.1",
"html-webpack-harddisk-plugin": "0.2.0",
"html-webpack-plugin": "3.1.0",
"husky": "0.14.3",
"lerna": "2.9.0",
"prettier": "1.11.1",
"rimraf": "2.6.2",
"webpack": "4.2.0",
"webpack-cli": "2.0.13",
"webpack-dev-server": "3.1.1"
},
"workspaces": [
"@dekk/*"
],
"renovate": {
"major": false
}
}