This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
forked from spree/spree-api-v2-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "@vendo-dev/js-sdk",
"version": "1.0.0",
"description": "Node module to easily integrate your JavaScript or TypeScript application with Spree API V2. You can create an entirely custom Storefront in JS/TS with this package including one page checkout, Single Page Apps, PWAs and so on",
"engines": {
"node": ">=14.17.0"
},
"main": "dist/server/index.js",
"typesVersions": {
"*": {
"dist/server/createFetchFetcher": [
"types/fetchers/createFetchFetcher.d.ts"
],
"dist/server/createAxiosFetcher": [
"types/fetchers/createAxiosFetcher.d.ts"
]
}
},
"types": "types/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "webpack",
"build:server": "webpack --config-name server",
"build:client": "webpack --config-name client",
"watch": "webpack --watch",
"watch:server": "webpack --watch --config-name server",
"watch:client": "webpack --watch --config-name client",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint src/**/*.ts --fix",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spark-solutions/spree-storefront-api-v2-js-sdk.git"
},
"author": "Spark Solutions <we@sparksolutions.co> (https://sparksolutions.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/spark-solutions/spree-storefront-api-v2-js-sdk/issues"
},
"homepage": "https://guides.spreecommerce.org/api/v2",
"devDependencies": {
"@types/node": "^14.17.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"axios": "^0.25.0",
"del": "^6.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"node-fetch": "^2.6.7",
"prettier": "^2.3.2",
"progress-bar-webpack-plugin": "^2.1.0",
"source-map-loader": "^2.0.2",
"ts-loader": "^8.3.0",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"sideEffects": false,
"peerDependencies": {
"axios": "^0.25.0",
"node-fetch": "^2.6.6"
},
"peerDependenciesMeta": {
"node-fetch": {
"optional": true
},
"axios": {
"optional": true
}
}
}