-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.35 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
{
"private": true,
"name": "jarl-react-packages",
"scripts": {
"build": "node ./scripts/build.js",
"clean": "lerna run clean",
"start": "cd demo && npm start",
"test": "lerna run test --stream",
"ci-test": "lerna run ci-test --stream",
"ci-e2e": "lerna run ci-e2e --stream",
"ci-publish": "lerna exec -- npm publish",
"notify": "node ./scripts/notify.js",
"lint": "lerna run lint --stream",
"bootstrap": "lerna bootstrap",
"tag-version": "lerna publish --skip-npm && git push --follow-tags",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{js,jsx}": ["eslint --fix --max-warnings 0", "git add"],
"**/*.{js,jsx,json,css}": ["prettier --write", "git add"]
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "^8.2.2",
"discord.js": "^11.3.2",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"fs-extra": "^5.0.0",
"husky": "^1.3.1",
"isomorphic-fetch": "^2.2.1",
"lerna": "^3.13.0",
"lint-staged": "^8.1.4",
"prettier": "^1.11.1",
"rollup": "0.53.0"
}
}