forked from lost-pixel/lost-pixel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.55 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
{
"name": "lost-pixel",
"version": "2.17.0",
"description": "GitHub Action for Lost Pixel integration",
"main": "dist/",
"bin": "dist/bin.js",
"files": [
"dist",
"config-templates"
],
"scripts": {
"test": "jest --detectOpenHandles",
"test:watch": "jest --watch --detectOpenHandles",
"build": "rimraf dist && tsc",
"build-example-storybook-v6.4": "rimraf examples/example-storybook-v6.4/storybook-static && cd examples/example-storybook-v6.4 && npm install && npm run build-storybook",
"build-example-storybook-v6.5-storystore-v7": "rimraf examples/example-storybook-v6.5-storystore-v7/storybook-static && cd examples/example-storybook-v6.5-storystore-v7 && npm install && npm run build-storybook",
"build-example-next-js-pages": "cd examples/example-next-js-pages && npm ci && npm run build",
"build-example-ladle": "cd examples/example-ladle && npm ci && npm run build",
"run-example-next-js-pages": "cd examples/example-next-js-pages && npm run start",
"run-example-ladle": "cd examples/example-ladle && npm run serve",
"test-on-examples": "./test-on-examples.sh",
"lint": "xo && tsc --noEmit && eslint '*/**/*.ts'",
"lint-fix": "tsc --noEmit && eslint '*/**/*.ts' --fix",
"lint-staged": "lint-staged",
"prepare": "husky install",
"release": "np --no-publish",
"dev": "ts-node src/bin",
"start": "NODE_ENV=production node dist/bin.js"
},
"lint-staged": {
"*.{js,ts}": [
"./node_modules/eslint/bin/eslint.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lost-pixel/lost-pixel.git"
},
"keywords": [],
"author": "Chris Kalmar",
"license": "MIT",
"bugs": {
"url": "https://github.com/lost-pixel/lost-pixel/issues"
},
"homepage": "https://github.com/lost-pixel/lost-pixel#readme",
"dependencies": {
"async": "3.2.4",
"axios": "0.27.2",
"fs-extra": "^10.1.0",
"get-port-please": "2.6.1",
"lodash.get": "^4.4.2",
"lodash.kebabcase": "^4.1.1",
"minio": "7.0.32",
"pixelmatch": "5.3.0",
"playwright": "1.25.2",
"pngjs": "^6.0.0",
"posthog-node": "^2.1.0",
"serve-handler": "^6.1.3",
"ts-node": "10.9.1",
"uuid": "^9.0.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@octokit/webhooks-types": "6.3.6",
"@types/async": "3.2.15",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.0.3",
"@types/lodash.get": "4.4.7",
"@types/lodash.kebabcase": "4.1.7",
"@types/minio": "7.0.13",
"@types/pixelmatch": "5.2.4",
"@types/pngjs": "6.0.1",
"@types/serve-handler": "6.1.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.37.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unicorn": "43.0.2",
"husky": "8.0.1",
"jest": "29.0.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-jest": "29.0.1",
"typescript": "4.8.3",
"xo": "0.52.3"
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/object-curly-spacing": "off",
"import/extensions": "off",
"unicorn/filename-case": "off",
"unicorn/no-process-exit": "off",
"node/prefer-global/process": "off",
"@typescript-eslint/naming-convention": "off",
"unicorn/prefer-module": "off",
"import/no-mutable-exports": "off",
"@typescript-eslint/ban-ts-comment": "off",
"n/prefer-global/process": "off",
"n/file-extension-in-import": "off",
"no-lone-blocks": "off"
}
}
}