-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.44 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.44 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
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
{
"name": "take2-template-client-multi",
"version": "0.0.1",
"description": "Bare bones multi client repo",
"main": "index.js",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"apollo-boost": "^0.1.20",
"apollo-cache-inmemory": "^1.3.12",
"apollo-client": "^2.4.8",
"apollo-link": "^1.2.6",
"apollo-link-error": "^1.1.5",
"apollo-link-http": "^1.5.9",
"apollo-link-state": "^0.4.2",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"compression": "^1.7.3",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.1",
"express": "^4.16.4",
"express-sslify": "^1.2.0",
"graphql": "^14.0.2",
"i18next": "^12.0.0",
"i18next-browser-languagedetector": "^2.2.3",
"i18next-xhr-backend": "^1.5.1",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"react": "^16.7.0-alpha.0",
"react-apollo": "^2.3.1",
"react-dom": "^16.7.0-alpha.0",
"react-filepond": "^5.0.0",
"react-helmet": "^5.2.0",
"react-i18next": "^8.1.2",
"react-portal": "^4.1.5",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-tooltip": "^3.9.0",
"redux": "^4.0.1",
"redux-batched-actions": "^0.4.1",
"redux-create-reducer": "^1.1.3",
"redux-form": "^7.4.2",
"redux-form-input-masks": "^1.2.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uuid": "^3.3.2",
"webpack": "^4.22.0",
"webpack-cli": "^3.1.2",
"webpack-manifest-plugin": "^2.0.4",
"yup": "^0.26.6"
},
"devDependencies": {
"@storybook/addon-a11y": "^4.1.6",
"@storybook/addon-actions": "^4.1.6",
"@storybook/addon-info": "^4.1.6",
"@storybook/addon-options": "^4.1.6",
"@storybook/addon-storyshots": "^4.1.6",
"@storybook/addon-storyshots-puppeteer": "^4.1.6",
"@storybook/addon-viewport": "^4.1.6",
"@storybook/react": "^4.1.6",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"concurrently": "^4.1.0",
"dotenv-safe": "^6.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.8.0",
"eslint-config-fbjs": "^2.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-relay": "0.0.28",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"jest-spec-reporter": "^1.0.5",
"react-test-renderer": "^16.7.0",
"redux-mock-store": "^1.5.3",
"sinon": "^7.1.1"
},
"scripts": {
"dev": "node server/server.dev.js",
"prod": "node server/server.prod.js",
"test": "jest",
"test:visual": "npm run storybook:build && VIZ_REG=true jest \"stories.spec.js\"",
"test-watch": "jest --verbose --watch",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook-ci": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o .storybook-static"
},
"author": "",
"license": "MIT"
}