-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.56 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": "@consento/notification-server",
"version": "0.1.20",
"description": "A expo based notification implementation for Consento. Both server & client code. ",
"private": true,
"main": "./index.js",
"scripts": {
"start": "npm run serve",
"serve": "src/bin/consento-notify",
"watch-node": "nodemon dist/bin/consento-notify",
"ci": "npm run lint && npm run test -- --no-watchman",
"test": "jest --env=node src/**/__tests__/*.test.ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"pack": "pack-ts && rexreplace '#!/usr/bin/env npx ts-node' '#!/usr/bin/env node' dist/bin/consento-notify.js && chmod +x dist/bin/consento-notify.js && node -e 'if (require(\"./dist/package.json\").version !== require(\"./dist/package.js\").VERSION) { throw new Error(\"package.ts contains wrong version!\") }'",
"release": "npm run ci && npm run build-ts && npm run pack && cd dist && npm publish --access=public",
"lint": "eslint --ext .js,.ts ."
},
"author": "Martin Heidegger <martin.heidegger@gmail.com>",
"license": "MIT",
"dependencies": {
"@consento/api": "^0.5.0",
"@consento/crypto": "^0.4.3",
"@extra-iterable/join": "^2.5.13",
"@extra-iterable/map": "^2.5.13",
"compare-versions": "^3.6.0",
"cross-fetch": "^3.0.6",
"events": "^3.2.0",
"expo-constants": "^9.1.1",
"expo-notifications": "^0.7.2",
"expo-permissions": "^9.0.1",
"expo-server-sdk": "^3.5.1",
"express": "^4.17.1",
"flexlock-cb": "^2.2.1",
"get-random-values-polypony": "^1.0.0",
"hyperdb": "^3.5.0",
"hyperswarm": "^2.15.2",
"isomorphic-ws": "^4.0.1",
"level": "^6.0.1",
"level-ttl": "^3.1.1",
"p-map": "^4.0.0",
"react": ">=16.11.0",
"react-native": ">=0.62.2",
"rimraf": "^3.0.2",
"url": "^0.11.0",
"url-parse": "^1.4.7",
"ws": "^7.3.1"
},
"bin": {
"consento-notify": "bin/consento-notify.js"
},
"eslintConfig": {
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-redeclare": "off"
}
},
"eslintIgnore": [
"node_modules/*",
"dist/*",
"coverage/*",
"**/*.d.ts",
"/src/public/",
"/src/types/"
],
"devDependencies": {
"@leichtgewicht/pack-ts": "^1.0.1",
"@leichtgewicht/rexreplace": "^6.0.16",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"@types/lodash.map": "^4.6.13",
"@types/node": "^14.11.8",
"@types/react-native": "^0.63.2",
"@types/rimraf": "^3.0.0",
"@types/tape": "^4.13.0",
"@types/url-parse": "^1.4.3",
"@types/ws": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@unimodules/core": "^5.3.0",
"@unimodules/react-native-adapter": "^5.4.0",
"babel-preset-expo": "^8.2.3",
"eslint": "^7.11.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.5.3",
"jest-expo": "^39.0.0",
"jest-react-native": "^18.0.0",
"nodemon": "^2.0.4",
"rexreplace": "^6.0.13",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3",
"unimodules-permissions-interface": "^5.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/notification-server.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/consento-org/notification-server/issues"
},
"homepage": "https://github.com/consento-org/notification-server#readme"
}