This repository has been archived by the owner on Jun 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
111 lines (111 loc) · 3.31 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
111
{
"name": "meetup-web-platform",
"version": "0.0.1",
"description": "A collection of Node web application utilities for the Meetup web platform",
"engines": {
"node": "^10.22.1",
"yarn": "^1.9.4"
},
"main": "./lib/index.js",
"config": {
"description": "This config is used to mock a consumer app config",
"subdomain": "mwp-foo",
"agent": "MUP_WEB"
},
"scripts": {
"build": "lerna run build",
"npm-release": "lerna publish --yes --force-publish --skip-git --npm-tag $NPM_TAG --repo-version $GIT_TAG",
"lint": "eslint . --ext .js,.jsx --fix",
"typecheck": "flow",
"test": "yarn && yarn build && yarn test:unit",
"test:unit": "NODE_ENV=test jest",
"test:integration": "NODE_ENV=test jest --config jest.int.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetup/meetup-web-platform.git"
},
"author": "Meetup",
"license": "MIT",
"bugs": {
"url": "https://github.com/meetup/meetup-web-platform/issues"
},
"homepage": "https://github.com/meetup/meetup-web-platform#readme",
"dependencies": {
"apollo-boost": "0.4.9",
"isomorphic-fetch": "2.2.1",
"react-apollo": "3.1.5"
},
"devDependencies": {
"@alrra/travis-scripts": "3.0.1",
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"aws-sdk": "2.589.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-plugin-dynamic-import-node": "2.2.0",
"boom": "7.3.0",
"classnames": "^2.2.6",
"electrode-csrf-jwt": "git+https://github.com/meetup/electrode-csrf-jwt.git#793431729d8fb4ee315f28709f323f198b25d460",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.3.5",
"eslint": "5.16.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-flowtype": "3.10.3",
"eslint-plugin-react": "7.13.0",
"flow-bin": "0.98.1",
"hapi": "18.1.0",
"husky": "2.4.1",
"inert": "5.1.3",
"intl-messageformat": "2.1.0",
"intl-relativeformat": "2.0.0",
"iron": "5.0.6",
"jest": "24.8.0",
"joi": "14.3.1",
"js-joda": "1.10.1",
"js-joda-timezone": "2.0.2",
"lerna": "3.15.0",
"lint-staged": "8.2.1",
"meetup-web-components": "8.0.2918",
"meetup-web-mocks": "1.0.270",
"mwp-router": ">=0.0.1",
"mwp-test-utils": ">=0.0.1",
"node-fetch": "1.7.2",
"prettier": "1.18.2",
"prop-types": "15.7.2",
"querystring": "0.2.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-helmet": "5.2.1",
"react-intl": "2.4.0",
"react-redux": "5.0.7",
"react-router-dom": "4.2.2",
"react-test-renderer": "16.8.6",
"react-transition-group": "2.2.1",
"redux": "3.7.2",
"reselect": "3.0.1",
"rison": "0.1.1",
"swarm-animation": "^0.0.95",
"swarm-constants": "2.2.122",
"swarm-icons": "3.8.354",
"swarm-sasstools": "5.0.434",
"tough-cookie": "2.3.3",
"uuid": "3.3.2"
},
"resolutions": {
"semver": "6.0.0"
},
"private": true,
"workspaces": [
"packages/*"
]
}