forked from facebook/relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 4.03 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "relay",
"description": "A framework for building data-driven React applications.",
"version": "1.6.2",
"license": "MIT",
"homepage": "https://facebook.github.io/relay/",
"bugs": "https://github.com/facebook/relay/issues",
"repository": "facebook/relay",
"scripts": {
"build": "gulp",
"jest": "NODE_ENV=test jest \"$@\"",
"lint": "eslint --max-warnings 0 .",
"prepublish": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json && npm run build",
"prettier": "find . -name node_modules -prune -or -name dist -prune -or -name '*.js' -print | xargs prettier --write",
"test": "f() { EXIT=0; npm run typecheck || EXIT=$?; npm run test-dependencies || EXIT=$?; npm run jest \"$@\" || EXIT=$?; exit $EXIT; }; f",
"test-dependencies": "node ./scripts/testDependencies.js",
"typecheck": "flow check"
},
"dependencies": {
"@babel/generator": "7.0.0-beta.54",
"@babel/parser": "7.0.0-beta.54",
"@babel/types": "7.0.0-beta.54",
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "9.0.0-beta.2",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-regenerator": "6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "^6.20.0",
"babel-preset-fbjs": "2.2.0",
"babel-runtime": "^6.23.0",
"babel-traverse": "^6.26.0",
"babel-types": "^6.24.1",
"chalk": "^1.1.1",
"create-react-class": "^15.6.0",
"del": "3.0.0",
"eslint": "5.1.0",
"eslint-config-fbjs": "2.0.1",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-flowtype": "2.35.1",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.3.0",
"eslint-plugin-relay": "0.0.23",
"event-stream": "3.3.4",
"fast-glob": "^2.2.2",
"fb-watchman": "^2.0.0",
"fbjs": "0.8.17",
"fbjs-scripts": "0.8.3",
"flow-bin": "^0.77.0",
"graphql": "^0.13.1",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-chmod": "2.0.0",
"gulp-derequire": "2.1.0",
"gulp-flatten": "0.4.0",
"gulp-header": "1.8.9",
"gulp-util": "3.0.8",
"immutable": "~3.7.6",
"iterall": "^1.2.1",
"jest": "^23.1.0",
"object-assign": "4.1.1",
"prettier": "1.13.6",
"prop-types": "^15.5.8",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-test-renderer": "^16.3.0",
"run-sequence": "2.2.1",
"signedsource": "^1.0.0",
"webpack": "1.13.1",
"webpack-stream": "3.2.0",
"yargs": "^9.0.0"
},
"private": true,
"devEngines": {
"node": ">=4.x",
"npm": ">=2.x"
},
"prettier": {
"requirePragma": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"parser": "flow"
},
"jest": {
"haste": {
"hasteImplModulePath": "<rootDir>/scripts/jest/hasteImpl.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/node_modules/(?!(fbjs/lib/|react/lib/|fbjs-scripts/jest))"
],
"rootDir": "",
"roots": [
"<rootDir>/node_modules/fbjs/lib/",
"<rootDir>/node_modules/fbjs-scripts/jest",
"<rootDir>/packages/"
],
"setupFiles": [
"<rootDir>/node_modules/fbjs-scripts/jest/environment.js",
"<rootDir>/scripts/jest/environment.js"
],
"timers": "fake",
"transform": {
".*": "<rootDir>/scripts/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/fbjs-scripts/",
"<rootDir>/node_modules/fbjs/lib/(?!(ErrorUtils.js$|fetch.js$|fetchWithRetries.js$))",
"<rootDir>/node_modules/fbjs/node_modules/core-js/",
"<rootDir>/node_modules/fbjs/node_modules/promise/",
"<rootDir>/node_modules/object-assign/",
"<rootDir>/node_modules/prop-types/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/react/"
],
"testEnvironment": "node"
}
}