-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.33 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
{
"name": "dancedeets-monorepo",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-react-intl": "^2.2.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^1.7.0",
"eslint-plugin-flowtype": "^2.32.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.57.1",
"flow-typed": "^2.1.2",
"fs-extra": "^1.0.0",
"prettier": "1.6.1",
"shebang-loader": "0.0.1"
},
"scripts": {
"eslint-check": "./node_modules/eslint/bin/eslint.js --print-config .eslintrc | node_modules/eslint-config-prettier/bin/cli.js",
"js-files": "find . \\! -regex '.*node_modules.*' \\! -regex '.*/lib-.*' \\! -regex '.*/dist/.*' \\! -regex '.*/frankenserver/.*' -name '*.js' \\! -path './common/js/languages/data.js' \\! -path './mobile/js/data/localizedCountries.js' \\! -regex '.*/flow-typed/.*'",
"prettier": "npm run --silent js-files | xargs ./node_modules/prettier/bin/prettier.js --single-quote --trailing-comma es5 --write"
},
"dependencies": {
"babel-eslint": "^8.2.1"
}
}