-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 4.05 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
112
113
{
"name": "artfullylondon-web-admin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@aws-amplify/auth": "^1.0.5",
"apollo-cache-inmemory": "^1.2.7",
"apollo-client": "^2.3.8",
"apollo-link": "^1.2.2",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"apollo-link-state": "^0.4.1",
"date-fns": "2.0.0-alpha.11",
"empty": "^0.10.1",
"final-form": "^4.9.1",
"global": "^4.3.2",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"grommet": "2.0.0-beta.4",
"grommet-icons": "1.1.0",
"lodash": "^4.17.10",
"loglevel": "^1.6.1",
"makecancelable": "^1.0.0",
"mapbox-gl": "^0.47.0",
"milliseconds": "^1.0.3",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.2",
"react-final-form": "^3.6.5",
"react-lazyload": "^2.3.0",
"react-mapbox-gl": "^3.8.0",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"react-scroll-up": "^1.3.3",
"recompose": "^0.28.2",
"sanitize.css": "^6.0.0",
"styled-components": "^3.4.2",
"wait-until": "^0.0.2"
},
"scripts": {
"start": "HTTPS=true react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"test:ci": "cross-env JEST_JUNIT_OUTPUT=reports/jest/results.xml react-app-rewired test --env=jsdom --ci --reporters=default --reporters=jest-junit --runInBand",
"flow": "flow",
"lint": "./node_modules/.bin/eslint --global cy,Cypress ./src ./cypress",
"get-fragment-types": "node ./scripts/get-fragment-types.js",
"deploy:staging": "./node_modules/.bin/firebase deploy --project artfullylondon-staging-admin",
"deploy:prod": "./node_modules/.bin/firebase deploy --project artfullylondon-prod-admin",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"cypress": "npx cypress open",
"cypress:ci": "./node_modules/.bin/cypress run",
"screenshot": "cross-env NODE_ENV=test storybook-chrome-screenshot -p 9001 -c .storybook --inject-files ./src/testing/disable-caret.js",
"screenshot:regression": "reg-suit run",
"screenshot:local": "rm -r __screenshots__/* && yarn screenshot && reg-suit sync-expected && reg-suit compare",
"serve:build": "./node_modules/.bin/ws --directory ./build --port 3000 --https --spa index.html"
},
"devDependencies": {
"@playlyfe/gql": "^2.6.0",
"@storybook/addon-a11y": "^3.4.10",
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-console": "^1.0.4",
"@storybook/addon-knobs": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addon-viewport": "^3.4.10",
"@storybook/addons": "^3.4.10",
"@storybook/react": "^3.4.10",
"babel-core": "^6.26.3",
"babel-plugin-grommet": "^0.5.3",
"babel-plugin-lodash": "^3.3.4",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.0",
"cypress": "3.1.0",
"cypress-testing-library": "^2.2.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"firebase-tools": "^4.0.3",
"flow-bin": "^0.78.0",
"flow-typed": "^2.5.1",
"jest-each": "^23.5.0",
"jest-enzyme": "^6.0.3",
"jest-image-snapshot": "^2.4.3",
"jest-junit": "^5.1.0",
"local-web-server": "^2.6.0",
"node-fetch": "^2.2.0",
"puppeteer": "^1.7.0",
"rc-util": "^4.5.1",
"react-app-rewire-graphql-tag": "^1.1.0",
"react-app-rewired": "^1.5.2",
"react-test-renderer": "^16.4.2",
"reg-keygen-git-hash-plugin": "^0.7.6",
"reg-notify-github-plugin": "^0.7.6",
"reg-publish-s3-plugin": "^0.7.10",
"reg-suit": "^0.7.13",
"storybook-addon-apollo-graphql": "^2.1.0",
"storybook-chrome-screenshot": "^1.3.0",
"storybook-react-router": "^1.0.1",
"uuid": "^3.3.2"
},
"jest": {
"moduleNameMapper": {
"^react-lazyload$": "<rootDir>/__mocks__/empty-component-with-children.jsx"
},
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"globals": {
"STORYBOOK_HOST_URI": "http://localhost:9009/"
}
}
}