-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.8 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
{
"name": "@farfetch/blackout-redux",
"version": "1.22.3",
"description": "Modules to manage the application global state",
"license": "MIT",
"main": "src/index.ts",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "yarn build:transpile && yarn build:types",
"build:watch": "../../scripts/transpile.sh --skip-initial-build --watch --verbose",
"build:transpile": "../../scripts/transpile.sh",
"build:types": "tsc -p tsconfig.release.json",
"build:copy-package-json": "node ../../scripts/copy-package-json.js",
"clean": "rimraf dist tsconfig.release.tsbuildinfo",
"ci:types": "tsc -p tsconfig.ci.runtime.json",
"prepack": "yarn build:copy-package-json",
"dev:link": "yarn build && yarn build:copy-package-json && cd dist && yarn link",
"release:git": "yarn build && yarn build:copy-package-json && cd dist && npx gitpkg publish --registry"
},
"repository": {
"type": "git",
"url": "https://github.com/Farfetch/blackout.git"
},
"dependencies": {
"@types/proper-url-join": "2.1.1",
"credit-card-type": "^9.1.0",
"normalizr": "^3.6.1",
"proper-url-join": "^2.1.1",
"reselect": "^4.1.7",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@farfetch/blackout-analytics": "^1.15.1",
"@farfetch/blackout-client": "^2.19.1",
"immer": "^9.0.19",
"lodash": "^4.17.21",
"redux": "^4.1.0",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.4.2"
},
"peerDependencies": {
"@farfetch/blackout-analytics": "^1.0.0-next.87",
"@farfetch/blackout-client": "^2.0.0-next.216",
"immer": "^9.0.19",
"lodash-es": "^4.17.21",
"redux": "^4.1.0",
"redux-thunk": "^2.4.2",
"reselect": "^4.1.5"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14",
"npm": ">=6.4.1"
}
}