-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.13 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
{
"name": "@chargetrip/types",
"version": "1.35.0",
"license": "MIT",
"keywords": [
"chargetrip",
"types",
"javascript",
"ev",
"electric-vehicles",
"navigation",
"routing",
"charging",
"charge",
"station",
"plug",
"turn-by-turn"
],
"author": {
"name": "Tim Kuilman",
"email": "tim.kuilman@chargetrip.com"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
]
}
],
"@semantic-release/github",
"@semantic-release/npm"
]
},
"repository": "https://github.com/chargetrip/types",
"bugs": "https://github.com/chargetrip/types/issues",
"homepage": "https://chargetrip.com/",
"main": "dist/node/index.js",
"modules": "dist/browser/index.js",
"react-native": "dist/react-native/index.js",
"types": "dist/ts/index.d.ts",
"files": [
"dist/",
"src/",
"graphql.schema.json"
],
"scripts": {
"lint": "eslint --ext .ts src",
"typecheck": "tsc --noEmit",
"clean": "./node_modules/.bin/del dist",
"build:babel": "babel src --out-dir dist/react-native --extensions .ts,.tsx --source-maps --ignore \"**/__tests__/**\",\"**/*.d.ts\"",
"build:rollup": "rollup -c",
"build:ts": " tsc -p ./tsconfig.release.json --outDir dist/ts --emitDeclarationOnly",
"build": "yarn clean && yarn generate:types && yarn build:babel && yarn build:rollup && yarn build:ts",
"watch:babel": "yarn build:babel --watch",
"watch:rollup": "yarn build:rollup -w",
"watch:ts": "yarn build:ts --watch",
"watch": "yarn clean && concurrently \"yarn:watch:babel\" \"yarn:watch:rollup\" \"yarn:watch:ts\"",
"generate:types": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@chargetrip/codegen-chargetrip-fetch": "^1.0.0",
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@callstack/eslint-config": "^10.2.0",
"@graphql-codegen/cli": "^1.21.8",
"@graphql-codegen/introspection": "^1.18.2",
"@graphql-codegen/typescript": "^1.23.0",
"@kocal/rollup-plugin-graphql": "^1.0.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"concurrently": "^5.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.1",
"graphql": "^15.5.3",
"prettier": "^1.19.1",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^6.1.0",
"semantic-release": "^17.4.7",
"typescript": "^3.9.10"
},
"dependencies": {
"core-js": "^3.17.3"
}
}