-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
144 lines (144 loc) · 5.08 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
144
{
"name": "@wingsuit-designsystem/root",
"engines": {
"node": ">=12.13.0",
"yarn": ">=1.3.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged"
}
},
"lint-staged": {
"*.html": [
"yarn lint:js --fix"
],
"*.js": [
"yarn lint:js --fix"
],
"*.jsx": [
"yarn lint:js --fix"
],
"*.ts": [
"yarn lint:js --fix"
],
"*.tsx": [
"yarn lint:js --fix"
]
},
"private": true,
"scripts": {
"coverage": "codecov",
"test": "node ./scripts/test.js",
"bootstrap": "node ./scripts/bootstrap.js",
"build": "node ./scripts/build-package.js",
"lint": "yarn lint:js . && yarn lint:md .",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .ts,.tsx,.mjs --report-unused-disable-directives packages starter-kits",
"fix:js": "cross-env NODE_ENV=production eslint --fix --cache --cache-location=.cache/eslint --ext .ts,.tsx,.mjs --report-unused-disable-directives",
"lint:md": "remark -q",
"fix:md": "remark . -o",
"lerna": "lerna",
"publish:debug": "npm run publish:latest -- --npm-tag=debug --no-push",
"publish:latest": "lerna publish --exact --concurrency 1 --force-publish",
"publish:next": "npm run publish:latest -- --npm-tag=next",
"repo-dirty-check": "node -r esm ./scripts/run-repo-dirty-check",
"local-registry": "ts-node --project=./scripts/tsconfig.json ./scripts/run-registry.ts ",
"dev:babel": "lerna exec --scope @wingsuit-designsystem/* --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/watch-babel.js",
"dev": "concurrently --kill-others \"yarn dev:tsc\" \"yarn dev:babel\"",
"dev:tsc": "lerna exec --scope @wingsuit-designsystem/* --parallel -- cross-env-shell node \\$LERNA_ROOT_PATH/scripts/watch-tsc.js",
"docs:build": "npm --prefix docs run build",
"publish:docs": "./scripts/publish-docs.sh;",
"docs:dev": "npm --prefix docs run dev",
"test:e2e": "cypress run",
"test:e2e-framework": "ts-node --project=./scripts/tsconfig.json ./scripts/run-e2e.ts",
"test:e2e-gui": "concurrently --success first --kill-others \"cypress open\" \"yarn serve-storybooks\"",
"build-storybooks": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true node -r esm ./scripts/build-storybooks.js",
"serve-storybooks": "http-server ./built-storybooks -p 8001",
"await-serve-storybooks": "wait-on http://localhost:8001",
"drupal-demo:update-theme": "./scripts/rsync_theme.sh;"
},
"workspaces": [
"docs",
"packages/*",
"starter-kits/*",
"presets/*",
"presets/examples/*",
"examples/*"
],
"optionalDependencies": {
"verdaccio": "^5.5.2",
"@cypress/skip-test": "^2.6.1",
"@cypress/webpack-preprocessor": "^5.9.1",
"cypress": "8.7.0",
"ts-loader": "^8.0.14",
"verdaccio-auth-memory": "^9.7.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.8.4",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.8.4",
"@storybook/eslint-config-storybook": "^2.2.0",
"@storybook/linter-config": "^2.3.0",
"@types/enzyme": "^3.10.3",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-plugin-require-context-hook": "^1.0.0",
"codecov": "^3.5.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.0",
"downlevel-dts": "^0.4.0",
"enquirer": "^2.3.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^6.5.1",
"eslint-plugin-cypress": "^2.10.1",
"eslint-plugin-react": "^7.15.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"fs-extra": "^9.0.0",
"http-server": "^0.12.3",
"jest": "^25.2.4",
"jest-cli": "^25.2.4",
"jest-config": "^25.2.4",
"jest-diff": "^25.1.0",
"jest-emotion": "^10.0.17",
"jest-environment-jsdom": "^25.2.4",
"jest-environment-jsdom-thirteen": "^1.0.1",
"jest-enzyme": "^7.0.2",
"jest-image-snapshot": "^3.0.1",
"jest-jasmine2": "^25.2.4",
"jest-matcher-utils": "^25.1.0",
"jest-raw-loader": "^1.0.1",
"jest-serializer-html": "^7.0.0",
"jest-teamcity": "^1.7.0",
"jest-vue-preprocessor": "^1.5.0",
"jest-watch-typeahead": "^0.4.0",
"lerna": "^3.20.2",
"node-cleanup": "^2.1.2",
"p-limit": "^2.3.0",
"prettier": "^2.0.2",
"raf": "^3.4.0",
"remark-cli": "^8.0.0",
"remark-lint": "^7.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"shelljs": "^0.8.4",
"trash": "^6.1.1",
"ts-node": "^8.9.1",
"typescript": "^4.5.4",
"wait-on": "^4.0.0"
},
"dependencies": {
"window-size": "^1.1.1"
}
}