forked from veteransaffairscanada/vac-benefits-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.86 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
{
"name": "vac-poc",
"license": "MIT",
"description": "Proof of concept for VAC benefits navigator",
"scripts": {
"dev": "node server.js",
"build": "next build",
"postinstall": "next build",
"start": "NODE_ENV=production node server.js",
"test": " NODE_ENV=test jest --coverage",
"lint": "node_modules/eslint/bin/eslint.js pages components __tests__",
"precommit": "pretty-quick --staged",
"cypress:wait": "wait-on http://localhost:3000",
"cypress:fallback":
"cypress run -s cypress/integration/fallback_spec.js --config 'userAgent=Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)'",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"@cdssnc/gcui": "^0.0.18",
"@material-ui/core": "^1.3.1",
"@material-ui/icons": "^1.1.0",
"autosuggest-highlight": "^3.1.1",
"babel-loader": "7",
"babel-plugin-emotion": "^9.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.3.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"detect-browser": "^2.3.0",
"emotion": "^9.1.1",
"emotion-server": "^9.1.2",
"express": "4.16.2",
"helmet": "^3.12.1",
"i18next": "10.4.1",
"i18next-browser-languagedetector": "2.1.0",
"i18next-express-middleware": "1.0.10",
"i18next-node-fs-backend": "1.0.0",
"i18next-xhr-backend": "1.5.1",
"isomorphic-unfetch": "^2.0.0",
"jest-axe": "^3.0.0",
"lunr": "^2.2.1",
"next": "6.1.1",
"next-redux-wrapper": "^2.0.0-beta.6",
"raven-js": "^3.24.0",
"react": "^16.3.0",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.3.0",
"react-emotion": "^9.1.1",
"react-ga": "^2.4.1",
"react-google-maps": "^9.4.5",
"react-highlight-words": "^0.11.0",
"react-i18next": "^7.3.6",
"react-jss": "^8.4.0",
"react-redux": "^5.0.7",
"reactstrap": "^5.0.0-beta.3",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"universal-cookie": "^2.2.0",
"wait-on": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.49",
"@babel/core": "7.0.0-beta.49",
"@babel/preset-env": "7.0.0-beta.49",
"@babel/preset-react": "7.0.0-beta.49",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.1",
"cypress": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.3",
"husky": "^0.14.3",
"jest": "^23.1.0",
"prettier": "1.11.1",
"pretty-quick": "^1.4.1",
"react-test-renderer": "^16.2.0",
"regenerator-runtime": "^0.11.1"
}
}