-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.37 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.37 KB
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
{
"name": "@snek-at/bridge",
"version": "1.5.0",
"description": "Enoy it.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "src/native.ts",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline --ignore \"src/**/*.test.ts\"",
"prepare": "husky install",
"release": "HUSKY=0 yarn semantic-release"
},
"files": [
"lib",
"src",
"LICENSES"
],
"repository": {
"type": "git",
"url": "git+https://github.com/schett-net/bridge.git"
},
"keywords": [],
"author": "schettn",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/schett-net/bridge/issues"
},
"homepage": "https://github.com/schett-net/bridge#readme",
"dependencies": {
"@apollo/client": "^3.1.5",
"@types/node": "^14.14.10",
"apollo-upload-client": "^14.1.1",
"graphql": "15.8.0",
"graphql-tag": "^2.12.6",
"isomorphic-fetch": "^3.0.0",
"js-cookie": "^2.2.1",
"subscriptions-transport-ws": "^0.9.18"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@react-native-async-storage/async-storage": "^1.17.10",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/apollo-upload-client": "^14.1.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^26.0.20",
"@types/js-cookie": "^2.2.6",
"@types/ws": "^7.4.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.1",
"semantic-release": "^17.4.7",
"typescript": "^3.9.7"
},
"lint-staged": {
"*.tsx,*.ts,*.js,!*js.snap": [
"prettier --write"
],
"*.json,!package.json": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}