-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
100 lines (100 loc) · 3.47 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
{
"name": "inscriptions",
"private": true,
"scripts": {
"start": "meteor run",
"local": "meteor run --settings settings.json",
"localHttps": "export ROOT_URL=https://localhost:3100; export NODE_TLS_REJECT_UNAUTHORIZED=0; export WITH_HTTPS=1; meteor run --settings settings.json",
"update-sw": "workbox injectManifest workbox-config.js",
"lint": "eslint --quiet --ext .js,.jsx .",
"prettier": "prettier --write \"client/**/*.js\" \"imports/**/*.js\" \"server/**/*.js\" --single-quote=true --trailing-comma=es5 --print-width=100",
"test": "NODE_ENV=test jest --watchAll",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"devChromeMac": "\"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome\" --user-data-dir=/tmp/foo --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://localhost:3100"
},
"meteor": {
"mainModule": {
"client": "app/entry-points/client/startup.js",
"server": "app/entry-points/server/index.js"
}
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@storybook/addon-actions": "^3.4.11",
"@storybook/addon-links": "^3.4.11",
"@storybook/react": "^3.4.11",
"accept-language": "^3.0.18",
"apollo-cache-inmemory": "^1.3.6",
"apollo-client": "^2.4.3",
"apollo-link": "^1.2.3",
"apollo-link-context": "^1.0.9",
"apollo-link-error": "^1.1.1",
"apollo-link-http": "^1.5.5",
"apollo-link-logger": "^1.2.3",
"apollo-server-express": "^2.1.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"express": "^4.16.4",
"graphql": "14.0.2",
"graphql-anywhere": "^4.1.20",
"graphql-tag": "^2.10.0",
"graphql-tools": "^4.0.2",
"graphql-type-json": "^0.2.1",
"http-proxy": "^1.17.0",
"indexof": "0.0.1",
"install": "^0.12.2",
"invariant": "^2.2.2",
"jest-styled-components": "^6.2.2",
"lodash": "^4.17.11",
"merge-graphql-schemas": "^1.5.7",
"meteor-node-stubs": "^0.4.1",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-apollo": "^2.2.4",
"react-dom": "^16.6.0",
"react-facebook-login": "^4.1.1",
"react-helmet": "^5.2.0",
"react-intl": "^2.7.2",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1",
"recompose": "^0.30.0",
"simpl-schema": "^1.5.3",
"storybook-host": "^5.0.1",
"styled-components": "^4.0.2",
"trashable": "^1.0.7",
"trashable-react": "^1.0.7",
"unfetch": "^4.0.1",
"web-push": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.2",
"autoprefixer": "^6.3.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-styled-components": "^1.8.0",
"babel-root-slash-import": "^1.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-meteor": "^5.1.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"jest-meteor-stubs": "^1.5.1",
"node-sass": "^4.9.4",
"postcss-reporter": "^1.3.3",
"react-addons-test-utils": "^15.6.2",
"regenerator-runtime": "^0.12.1",
"stylelint": "^9.6.0"
}
}