-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
120 lines (120 loc) · 4.04 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-isomorphic-data-monorepo",
"private": true,
"version": "0.0.1",
"description": "Work in progress",
"workspaces": {
"packages": [
"examples/*",
"packages/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --scope=react-isomorphic-data --stream",
"build:minify": "bnr build:minify",
"dev": "lerna run dev --scope=react-isomorphic-data --stream",
"example": "lerna run start --scope=client --stream",
"example:ssr": "lerna run start --scope=ssr --stream",
"deploy": "yarn test && HUSKY_SKIP_HOOKS=true lerna publish --conventional-commits --create-release github",
"deploy:dryrun": "yarn test && HUSKY_SKIP_HOOKS=true lerna version --no-commit-hooks --no-git-tag-version --no-push",
"docgen:api": "yarn typedoc --out docusaurus/docs/api packages/react-isomorphic-data/src --tsconfig packages/react-isomorphic-data/tsconfig.json --theme docusaurus",
"test": "lerna run test --scope=react-isomorphic-data --stream",
"test:coverage": "lerna run test:coverage --scope=react-isomorphic-data --stream"
},
"betterScripts": {
"build:minify": {
"command": "lerna run build --scope=react-isomorphic-data --stream",
"env": {
"MINIFY": true
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackyef/react-isomorphic-data.git"
},
"keywords": [
"react",
"isomorphic",
"data",
"promise",
"fetch"
],
"author": "Jacky Efendi",
"license": "MIT",
"bugs": {
"url": "https://github.com/jackyef/react-isomorphic-data/issues"
},
"homepage": "https://github.com/jackyef/react-isomorphic-data#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-proposal-decorators": "7.3.0",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.3.4",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-syntax-async-generators": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-transform-destructuring": "7.3.2",
"@babel/plugin-transform-react-jsx-self": "7.2.0",
"@babel/plugin-transform-react-jsx-source": "7.2.0",
"@babel/plugin-transform-runtime": "7.3.4",
"@compodoc/compodoc": "^1.1.10",
"@rollup/plugin-replace": "^2.2.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/node": "^12.7.9",
"@types/react-dom": "^16.8.5",
"@types/react": "^16.9.2",
"@types/rollup-plugin-json": "^3.0.2",
"@types/rollup-plugin-sourcemaps": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"better-npm-run": "^0.1.1",
"cz-conventional-changelog": "3.0.2",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.5",
"lerna": "^3.16.4",
"prettier": "^1.18.2",
"rollup": "^1.19.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.1",
"rollup-plugin-visualizer": "^2.6.0",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.2.7",
"typescript": "^3.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
}
},
"bundlewatch": {
"trackBranches": [
"master"
],
"files": [
{
"path": "./packages/react-isomorphic-data/dist/esm/index.js",
"maxSize": "4.5 KB"
}
]
}
}