-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 2.41 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
{
"name": "sharetribe-flex-sdk",
"version": "1.21.1",
"description": "Sharetribe SDK for JavaScript",
"main": "build/sharetribe-flex-sdk-node.js",
"browser": "build/sharetribe-flex-sdk-web.js",
"scripts": {
"build": "webpack",
"lint": "eslint .",
"test": "jest",
"playground": "babel-node playground.js",
"pg": "babel-node playground.js",
"format": "prettier --write --print-width 100 --single-quote --trailing-comma es5 'src/**/*.js' 'examples/**/*.js'",
"serve-docs": "docpress serve",
"build-docs": "docpress build"
},
"repository": {
"type": "git",
"url": "https://github.com/sharetribe/flex-sdk-js.git"
},
"keywords": [
"sharetribe",
"api",
"sdk"
],
"author": "Sharetribe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sharetribe/flex-sdk-js/issues"
},
"homepage": "https://github.com/sharetribe/flex-sdk-js",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.0",
"babel-plugin-lodash": "^3.3.4",
"colors": "^1.3.1",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.0.1",
"docpress": "^0.7.6",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"jest": "^29.7.0",
"open": "^7.0.2",
"prettier": "^1.14.0",
"webpack": "^4.47.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"axios": "^1.5.1",
"js-cookie": "^2.1.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.10",
"transit-js": "^0.8.861"
},
"resolutions": {
"docpress/**/lodash": "^4.17.10",
"terser-webpack-plugin": "^4.2.3",
"chokidar": "^3.6.0"
},
"babel": {
"plugins": [
"lodash",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings"
],
"presets": [
"@babel/preset-env"
]
},
"jest": {
"testEnvironment": "node"
}
}