forked from webiny/webiny-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 4.47 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
133
134
135
136
137
138
139
140
141
142
143
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"components/*",
"examples/apps/*"
],
"nohoist": [
"**/inquirer/**",
"**/mime/**"
]
},
"contributors": [
"Pavel Denisjuk <[email protected]>",
"Sven Al Hamad <[email protected]>",
"Adrian Smijulj <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/webiny/webiny-js.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@shelf/jest-mongodb": "^1.1.0",
"@testing-library/cypress": "^5.0.2",
"@types/jest": "^24.0.24",
"@types/jquery": "^3.3.31",
"@types/node": "^12.12.22",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"adio": "^1.0.1",
"all-contributors-cli": "^6.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0-beta.3",
"babel-jest": "^24.9.0",
"bufferutil": "^4.0.1",
"chalk": "^2.4.1",
"commitizen": "^2.10.1",
"cross-env": "^5.2.0",
"cypress": "^3.8.0",
"cz-customizable": "^5.2.0",
"dotenv": "^5.0.1",
"empty": "^0.10.1",
"env-ci": "2.0.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-standard": "^4.0.1",
"execa": "^1.0.0",
"flatten": "^1.0.2",
"fs-extra": "^7.0.0",
"get-stream": "^3.0.0",
"get-yarn-workspaces": "^1.0.2",
"git-cz": "^1.7.1",
"glob": "^7.1.3",
"globby": "^8.0.1",
"inquirer": "^7.0.0",
"inquirer-autocomplete-prompt": "^1.0.1",
"inquirer-maxlength-input-prompt": "^1.0.0",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"lerna": "3.19.0",
"lint-staged": "^7.2.2",
"load-json-file": "^6.2.0",
"lodash": "^4.17.11",
"longest": "^2.0.1",
"minimatch": "^3.0.4",
"node-fetch": "^2.6.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"semver": "^6.3.0",
"serverless": "^1.53.0",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-offline": "^5.10.1",
"source-map-support": "^0.5.0",
"ts-jest": "^24.2.0",
"typescript": "3.7.4",
"utf-8-validate": "^5.0.2",
"verdaccio": "^3.11.6",
"webpack": "^4.39.2",
"write-json-file": "^4.2.0",
"yargs": "^12.0.1"
},
"optionalDependencies": {
"fsevents": "^2.0.7"
},
"scripts": {
"build:components": "lerna run build --scope=@webiny/serverless-* --stream",
"build:apps": "lerna run build --scope=@webiny/app* --stream",
"build:api": "lerna run build --scope=@webiny/api* --stream",
"build:packages": "lerna run build --scope=@webiny/* --ignore=@webiny/serv* --stream",
"watch:packages": "lerna run watch --scope=@webiny/* --ignore=@webiny/serv* --stream --parallel",
"clear-dist": "yarn rimraf components/*/dist packages/*/dist",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"commit": "node ./scripts/commitizen.js",
"commit:no-verify": "yarn commit --no-verify",
"commit:verify": "yarn lint-staged",
"lint-staged": "lint-staged",
"prettier": "prettier --config .prettierrc.js --write",
"publish-to-verdaccio": " yarn build && cross-env REGISTRY=http://localhost:4800 node scripts/publish-to-verdaccio",
"setup-repo": "node scripts/setupRepo",
"start-verdaccio": "yarn verdaccio -c ./verdaccio.yaml",
"test": "jest --config jest.config.js",
"validate-packages": "node scripts/validatePackages.js",
"webiny-ui-build-storybook": "cd packages/ui && cross-env OUT=../../netlify-static yarn build-storybook",
"wby:fns": "cross-env NODE_ENV=development sls offline start --stage=local",
"wby:fns:inspect": "yarn wby:fns --inspect=9001"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"**/*.js": [
"adio",
"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"
}
}
}