forked from storybookjs/aem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.29 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
{
"name": "storybook-aem-native",
"version": "0.0.0",
"private": true,
"description": "",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "yarn build-watch:tsc",
"build-watch:tsc": "lerna exec --scope @storybook/* --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/watch-tsc.js",
"build:tsc": "lerna exec --scope @storybook/* --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/tsc.js",
"build-kitchen-sink-storybook": "cd ./examples/aem-kitchen-sink && build-storybook",
"netlify-build": "npm-run-all yarn build:tsc build-kitchen-sink-storybook",
"lint": "yarn lint:js",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.json,.html,.ts,.tsx,.mjs --report-unused-disable-directives .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"yarn": "yarn"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix"
],
"*.js": [
"yarn lint:js --fix"
],
"*.json": [
"yarn lint:js --fix"
],
"*.jsx": [
"yarn lint:js --fix"
],
"*.mjs": [
"yarn lint:js --fix"
],
"*.ts": [
"yarn lint:js --fix"
],
"*.tsx": [
"yarn lint:js --fix"
]
},
"workspaces": [
"app/*",
"examples/*",
"cli",
"aem-sb-js-core-components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CodeByAlex/storybook-aem-native.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeByAlex/storybook-aem-native/issues"
},
"homepage": "https://github.com/CodeByAlex/storybook-aem-native#readme",
"devDependencies": {
"@storybook/eslint-config-storybook": "^2.2.0",
"@storybook/linter-config": "^2.3.0",
"@types/jest": "^25.1.4",
"chalk": "^3.0.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.2",
"downlevel-dts": "^0.4.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"shelljs": "^0.8.3",
"ts-jest": "^25.2.1"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"npmlog": "^4.1.2"
}
}