-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
100 lines (100 loc) · 3.81 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint --ext '.js,.ts' './packages'",
"test": "jest",
"clean": "rimraf ./packages/*/build ./packages/*/tsconfig.tsbuildinfo",
"watch": "yarn clean && concurrently \"yarn:watch:source\" \"yarn:watch:ts\"",
"build:source": "lerna --ignore \"@haul-bundler/{basic-bundle-webpack-plugin,ram-bundle-webpack-plugin}\" exec --parallel \"babel src --out-dir build --extensions .js,.ts,.tsx --source-maps --config-file=../../babel.config.js\"",
"watch:source": "lerna --ignore \"@haul-bundler/{basic-bundle-webpack-plugin,ram-bundle-webpack-plugin}\" exec --parallel \"babel src --out-dir build --extensions .js,.ts,.tsx --source-maps --config-file=../../babel.config.js --watch\"",
"build:ts": "node ./scripts/build_ts.js",
"watch:ts": "node ./scripts/build_ts.js --watch",
"prepare": "yarn clean && yarn build:source && yarn build:ts",
"coverage:report": "nyc report --reporter=lcov --reporter=json --reporter=text --exclude='**/haul-preset-0.59/*/vendor/**'",
"coverage:check": "nyc check-coverage --temp-dir coverage",
"release": "NODE_ENV=production yarn prepare && lerna publish --ignore-prepublish --ignore-scripts --sign-git-commit"
},
"dependencies": {
"chalk": "^3.0.0",
"concurrently": "^5.0.2",
"escape-string-regexp": "^2.0.0",
"execa": "^4.0.0",
"glob": "^7.1.6",
"lerna": "^3.20.2",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"strip-ansi": "^6.0.0",
"traverse": "^0.6.6"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@callstack/eslint-config": "^9.1.0",
"@types/babel__core": "^7.1.3",
"@types/case-sensitive-paths-webpack-plugin": "^2.1.4",
"@types/cpx": "^1.5.1",
"@types/dedent": "^0.7.0",
"@types/del": "^4.0.0",
"@types/enhanced-resolve": "^3.0.6",
"@types/find-cache-dir": "^2.0.0",
"@types/hapi__boom": "^7.4.1",
"@types/hapi__hapi": "^18.2.6",
"@types/hapi__inert": "^5.2.0",
"@types/hapi__joi": "^16.0.6",
"@types/inquirer": "^6.5.0",
"@types/is-ci": "^2.0.0",
"@types/jest": "^24.0.25",
"@types/loader-utils": "^1.1.3",
"@types/lodash.get": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.throttle": "^4.1.6",
"@types/mkdirp": "^0.5.2",
"@types/node": "^14.14.6",
"@types/node-fetch": "^2.5.4",
"@types/npm-registry-fetch": "^4.0.1",
"@types/pify": "^3.0.2",
"@types/resolve": "^1.14.0",
"@types/rimraf": "^2.0.3",
"@types/semver": "^6.2.0",
"@types/signal-exit": "^3.0.0",
"@types/strip-ansi": "^5.2.1",
"@types/terminal-kit": "^1.28.0",
"@types/terser-webpack-plugin": "^2.2.0",
"@types/webpack": "^4.41.2",
"@types/webpack-sources": "^0.1.5",
"@types/which": "^1.3.2",
"@types/wrap-ansi": "^3.0.0",
"@types/ws": "^6.0.4",
"@types/yargs": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^6.0.0",
"dedent": "^0.7.0",
"del": "^5.1.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"metro": "^0.56.4",
"react-native": "0.60.0",
"snapshot-diff": "^0.6.1",
"source-map": "^0.7.3",
"terser": "^4.6.2",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-sources": "^1.4.3"
}
}