-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
59 lines (59 loc) · 2.01 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
{
"name": "pro-gallery-monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap --force-local --hoist --strict",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"build": "lerna run build",
"changelog": "sh scripts/changelog-builder.sh > CHANGELOG.md",
"start-playground": "cd packages/playground && npm run start",
"test:e2e": "start-server-and-test build-all-and-start-playground http-get://localhost:3006 'lerna run test:e2e-all'",
"test": "echo 'not running tests from root - runnign it using GitHub actions",
"ci:run-playground": "cd packages/playground && npx serve -s build -l 3006 && cd ../..",
"ci:test-unit": "lerna run unit",
"ci:test-e2e-layouts": "start-server-and-test ci:run-playground http-get://localhost:3006 'lerna run test:e2e-layouts'",
"ci:test-e2e-styleParams": "start-server-and-test ci:run-playground http-get://localhost:3006 'lerna run test:e2e-styleParams'",
"ci:test-e2e-integration": "start-server-and-test ci:run-playground http-get://localhost:3006 'lerna run test:e2e-integration'",
"build-all-and-start-playground": "npm run start-playground"
},
"overrides": {
"cheerio": "1.0.0-rc.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx}": "eslint --fix --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/pro-gallery.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wix/pro-gallery/issues"
},
"homepage": "https://github.com/wix/pro-gallery#readme",
"devDependencies": {
"chalk": "^2.4.2",
"gh-pages": "2.0.1",
"husky": "^4.3.0",
"lerna": "^4.0.0",
"lerna-packages": "0.0.1",
"lint-staged": "^10.5.2",
"lodash": "^4.17.21",
"prettier": "^2.1.2",
"prompt": "^1.0.0",
"semver": "^6.3.0",
"set-value": "^4.1.0"
},
"dependencies": {
"start-server-and-test": "^1.10.6"
}
}