forked from webiny/webiny-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 3.79 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
121
122
123
124
125
126
127
128
129
130
131
132
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"independent/*"
],
"nohoist": [
"**/inquirer/**",
"**/webiny-cli/**"
]
},
"contributors": [
"Pavel Denisjuk <pavel@webiny.com>",
"Sven Al Hamad <sven@webiny.com>",
"Adrian Smijulj <adrian@webiny.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/webiny/webiny-js.git"
},
"dependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-scripts": "^2.1.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@octokit/rest": "^15.12.0",
"@semantic-release/commit-analyzer": "^6.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0-beta.3",
"babel-jest": "^23.4.2",
"bottleneck": "^2.11.0",
"chalk": "^2.4.1",
"child-process-promise": "^2.2.1",
"commitizen": "^2.10.1",
"cross-env": "^5.2.0",
"cz-customizable": "^5.2.0",
"documentation": "^5.3.5",
"dotenv": "^5.0.1",
"empty": "^0.10.1",
"env-ci": "2.0.1",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"execa": "^1.0.0",
"flatten": "^1.0.2",
"flow-bin": "^0.80.0",
"flow-copy-source": "^1.3.0",
"flow-typed": "^2.4.0",
"fs-extra": "^7.0.0",
"get-stream": "^3.0.0",
"get-yarn-workspaces": "^1.0.2",
"git-cz": "^1.7.1",
"git-log-parser": "^1.2.0",
"glob": "^7.1.3",
"globby": "^8.0.1",
"hook-std": "^1.1.0",
"inquirer": "^6.2.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"inquirer-maxlength-input-prompt": "^1.0.0",
"jest": "^23.1.0",
"jest-extended": "^0.7.2",
"lerna-changelog": "0.8.2",
"lint-staged": "^7.2.2",
"lodash": "^4.17.11",
"longest": "^2.0.1",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"p-locate": "^3.0.0",
"p-retry": "^2.0.0",
"parse-github-url": "^1.0.2",
"pkgfiles": "^2.3.2",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"random-color": "^1.0.1",
"react-sortable-tree": "^2.6.0",
"read-pkg": "4.0.1",
"rimraf": "^2.6.2",
"rxjs": "^6.3.0",
"rxjs-compat": "^6.3.0",
"semver": "^5.5.1",
"source-map-support": "^0.5.0",
"targz": "^1.0.1",
"write-pkg": "^3.2.0",
"yargs": "^12.0.1"
},
"scripts": {
"checkdep": "node scripts/checkDep.js --config ./scripts/checkdep/config.base.js",
"build": "node scripts/build-tool/build.js --out=build/node_modules",
"test": "jest --config ./scripts/jest/config.src.js",
"test:build": "jest --config ./scripts/jest/config.build.js",
"commit": "node ./scripts/commitizen.js",
"commit:no-verify": "yarn commit --no-verify",
"commit:verify": "yarn checkdep && yarn lint-staged",
"lint-staged": "lint-staged",
"prettier": "prettier --config .prettierrc.js --write",
"release": "node scripts/release/packages",
"release:dry": "node scripts/release/packages --preview",
"release-independent": "node scripts/release/independent",
"release-independent:dry": "node scripts/release/independent --preview",
"webiny-ui-build-storybook": "cd packages/webiny-ui && cross-env OUT=../../netlify-static yarn build-storybook"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint --fix",
"git add",
"jest --config ./scripts/jest/config.src.js --findRelatedTests"
]
},
"yargs": {
"populate--": true
},
"config": {
"commitizen": {
"cliPath": "node_modules/commitizen",
"path": "./scripts/cz-adapter"
}
}
}