forked from nytimes/kyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.24 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
{
"private": true,
"version": "1.0.0-beta.29",
"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"
},
"scripts": {
"bootstrap": "npm i && lerna bootstrap --hoist",
"clean-bootstrap": "lerna clean --yes && rm -rf node_modules && npm run bootstrap",
"bump-pre": "lerna version --exact --force-publish=* prerelease",
"publish-pre": "lerna publish --exact --force-publish=* --dist-tag=pre --canary prerelease",
"publish-next": "lerna publish --exact --force-publish=* --dist-tag=next --canary --preid beta",
"publish-release": "lerna publish --message",
"starter-kyts": "lerna exec --scope \"kyt-starter-{server,static,universal}\"",
"test": "jest && npm run starter-kyts -- -- \"cd starter-src && npm t\"",
"test:ci": "jest --ci && npm run starter-kyts -- -- \"cd starter-src && npm t -- --ci\"",
"test-update": "jest -u && npm run starter-kyts -- -- \"cd starter-src && npm run test-update\"",
"test-coverage": "jest --coverage && npm run starter-kyts -- -- \"cd starter-src && npm t -- --coverage\"",
"test-watch": "jest --watch",
"e2e": "jest --config ./e2e_tests/jest.config.json --verbose --no-cache",
"lint": "eslint ./",
"lint:ci": "npm run lint -- --no-color --quiet",
"lint-fix": "npm run lint -- --fix",
"ncu": "ncu && lerna exec -- ncu",
"watch-cli": "cd packages/kyt-core && npm run watch"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"babel-eslint": "10.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-kyt": "file:packages/eslint-config-kyt",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-json": "2.1.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"jest": "25.2.0",
"lerna": "3.20.2",
"prettier": "2.0.2"
}
}