-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
100 lines (100 loc) · 3.72 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
{
"private": true,
"version": "0.0.0",
"description": "<p align=\"center\"><img src=\"/images/kyt-logo-large.png\"></p>",
"main": "index.js",
"author": "NYTimes",
"license": "Apache-2.0",
"repository": "git+https://github.com/nytimes/kyt",
"bugs": "https://github.com/nytimes/kyt/issues",
"homepage": "https://github.com/nytimes/kyt#readme",
"directories": {
"doc": "docs"
},
"engines": {
"yarn": "^1"
},
"scripts": {
"bootstrap": "yarn && lerna bootstrap && lerna run prepare && lerna link",
"bootstrap:ci": "yarn && lerna run prepare",
"clean-bootstrap": "lerna clean --yes && rm -rf node_modules && yarn bootstrap",
"publish": "lerna publish",
"publish:alpha": "lerna publish --canary --force-publish --preid alpha --dist-tag alpha",
"test:starter": "lerna exec --scope \"kyt-starter-{server,static,universal}-src\" --",
"test": "lerna run prepare && jest --detectOpenHandles && yarn test:starter yarn test --detectOpenHandles",
"test:ci": "jest --detectOpenHandles --ci && yarn test:starter yarn test --detectOpenHandles --ci",
"test-update": "jest -u && yarn test:starter yarn test-update",
"test-coverage": "jest --coverage && yarn test:starter yarn test-coverage",
"test-watch": "jest --watch && yarn test:starter yarn test-watch",
"e2e": "jest --config ./e2e_tests/jest.config.json --verbose --no-cache",
"lint": "jest --config ./jest.eslint.js",
"lint-staged": "yarn run lint -o",
"lint-fix": "ESLINT_FIX=1 ESLINT_QUIET=1 yarn run lint",
"lint:ci": "ESLINT_QUIET=1 yarn run lint",
"watch": "run-p watch-*",
"watch-kyt": "yarn workspace kyt watch",
"watch-kyt-runtime": "yarn workspace kyt-runtime watch",
"watch-kyt-utils": "yarn workspace kyt-utils watch",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.4",
"@babel/eslint-parser": "7.21.3",
"@babel/eslint-plugin": "7.19.1",
"@babel/runtime": "7.21.0",
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@testing-library/react": "12.1.0",
"core-js": "3.18.0",
"enzyme": "3.11.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-kyt": "file:packages/eslint-config-kyt",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.2",
"eslint-plugin-jest-formatting": "3.0.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.26.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"jest": "27.2.1",
"jest-runner-eslint": "0.10.1",
"jest-silent-reporter": "0.5.0",
"lerna": "4.0.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"regenerator-runtime": "0.13.9",
"rimraf": "3.0.2",
"source-map-support": "0.5.20",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0"
},
"workspaces": {
"packages": [
"packages/babel-preset-kyt",
"packages/babel-preset-kyt-core",
"packages/babel-preset-kyt-react",
"packages/eslint-config-kyt",
"packages/eslint-plugin-kyt",
"packages/jest-preset-kyt-enzyme",
"packages/jest-preset-kyt-rtl",
"packages/jest-preset-kyt-styled",
"packages/kyt-core",
"packages/kyt-runtime",
"packages/kyt-starter-server",
"packages/kyt-starter-server/starter-src",
"packages/kyt-starter-static",
"packages/kyt-starter-static/starter-src",
"packages/kyt-starter-universal",
"packages/kyt-starter-universal/starter-src",
"packages/kyt-utils",
"packages/stylelint-config-kyt"
]
}
}