-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 3.07 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
{
"private": true,
"license": "MIT",
"engines": {
"node": ">=6",
"npm": ">=5"
},
"scripts": {
"postinstall": "check-node-version --package --print && npm run bootstrap && cross-env NODE_ENV=development npm run build",
"bootstrap": "lerna bootstrap",
"build": "lerna run --parallel build",
"develop": "jest --projects .jestrc.*.json --watch",
"precommit": "lint-staged",
"lint": "jest --config .jestrc.lint.json",
"test": "cross-env NODE_ENV=test jest --config .jestrc.test.json",
"test:watch": "cross-env NODE_ENV=test npm test -- --watch",
"test:ci": "cross-env NODE_ENV=test npm test -- --no-watchman --maxWorkers=10",
"test:ci:coverage": "cross-env NODE_ENV=test npm test -- --no-watchman --coverage && codecov",
"format": "npm run format:js && npm run format:md",
"format:js": "prettier --write 'packages/**/*.js'",
"format:md": "prettier --parser markdown --write '*.md'",
"fix:eslint": "eslint --fix --format=node_modules/eslint-formatter-pretty",
"test:coverage:ci": "npm run test:ci -- --coverage && codecov",
"release": "cross-env NODE_ENV=cli npm run build && lerna publish --registry=https://registry.npmjs.org/"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-jest": "22.4.3",
"babel-plugin-array-includes": "2.0.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-entries": "1.0.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-0": "6.24.1",
"check-node-version": "3.2.0",
"codecov": "3.0.0",
"commitizen": "2.9.6",
"common-tags": "1.7.2",
"cross-env": "5.1.4",
"cz-lerna-changelog": "1.2.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jest": "21.15.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"husky": "0.14.3",
"jest": "22.4.3",
"jest-runner-eslint": "0.4.0",
"lerna": "2.9.0",
"lint-staged": "7.0.0",
"prettier": "1.11.1",
"rimraf": "2.6.2",
"rollup": "0.57.1",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-filesize": "1.5.0",
"rollup-plugin-flow": "1.1.1",
"rollup-plugin-includepaths": "0.2.2",
"rollup-plugin-json": "2.3.0",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "3.0.0",
"rollup-watch": "4.3.1"
},
"workspaces": ["packages/*"],
"lint-staged": {
"packages/**/*.js": ["npm run fix:eslint", "npm run format:js", "git add"],
"*.md": ["npm run format:md", "git add"]
}
}