-
Notifications
You must be signed in to change notification settings - Fork 311
/
package.json
31 lines (31 loc) · 1.01 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
{
"name": "fbjs-build",
"private": true,
"license": "MIT",
"devDependencies": {
"hermes-eslint": "^0.8.0",
"eslint": "^8.19.0",
"eslint-config-fbjs": "0.0.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"prettier": "^1.16.4"
},
"scripts": {
"prettier": "find . -name node_modules -prune -or -name dist -prune -or -name '*.js' -print | xargs prettier --write",
"lint": "eslint .",
"fbjs:build": "cd packages/fbjs && yarn && yarn run build",
"fbjs:test": "cd packages/fbjs && yarn && yarn run test",
"fbjs:flow": "cd packages/fbjs && yarn && yarn run flow",
"preset:test": "cd packages/babel-preset-fbjs && yarn && yarn run test",
"signedsource:test": "cd packages/signedsource && yarn && yarn run test"
},
"prettier": {
"requirePragma": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"jsxBracketSameLine": true
}
}