This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
93 lines (93 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"postinstall": "yarn build",
"lint": "node ./scripts/eslint/index.js",
"linc": "node ./scripts/eslint/only-changed.js",
"benchmark-memory": "node scripts/benchmark/memory.js",
"build": "node scripts/rollup/build.js",
"build:stats": "node scripts/rollup/stats.js",
"publish-packages": "lerna publish",
"prepublishOnly": "yarn test && yarn build",
"prettier:stat": "node ./scripts/prettier/index.js",
"clean-node-modules": "find ./ -name 'node_modules' -exec rm -rf '{}' +",
"test": "yarn lint && yarn prettier:stat && yarn flow && yarn jest:ci",
"jest": "cross-env NODE_ENV=TEST jest --no-cache --testPathIgnorePatterns \"(__fixtures__|matcher.js)\"",
"jest:ci": "cross-env NODE_ENV=TEST jest --no-cache --testPathIgnorePatterns \"(__fixtures__|matcher.js)\" --ci --runInBand",
"flow": "flow",
"prettier": "node ./scripts/prettier/index.js write-changed",
"prettier:all": "node ./scripts/prettier/index.js write"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-jest": "21.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babelrc-rollup": "^3.0.0",
"cli-table": "^0.3.1",
"commitplease": "^3.1.0",
"cross-env": "^5.1.1",
"eslint": "^3.10.2",
"eslint-config-fbjs": "^1.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-react": "^6.7.1",
"fbjs": "^0.8.4",
"flow-bin": "^0.63.1",
"glob": "^7.1.2",
"lerna": "^3.4.1",
"jest": "21.0.2",
"memory-inspector": "^0.0.4",
"minimatch": "^3.0.4",
"prettier": "^1.5.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-fiber-types": "file:./packages/react-tv/renderer/types",
"react-reconciler": "^0.10.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-optimize-js": "^0.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"commitplease": {
"style": "jquery",
"component": true,
"components": [
"all",
"modules",
"renderer",
"cli",
"navigation",
"scripts",
"examples",
"docs",
"test"
]
},
"jest": {
"roots": [
"<rootDir>/packages/react-tv",
"<rootDir>/packages/react-tv-cli",
"<rootDir>/packages/react-tv-navigation"
],
"moduleDirectories": [
"node_modules"
],
"verbose": true,
"resetModules": true
}
}