-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
122 lines (122 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "vac-poc",
"license": "MIT",
"description": "Proof of concept for VAC find benefits and services",
"version": "1.0.0",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/veteransaffairscanada/vac-benefits-directory"
},
"release": {
"verifyConditions": "condition-circle"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"build:start": "yarn build && yarn start",
"heroku-postbuild": "next build",
"test": "NODE_ENV=test jest --coverage",
"lint": "node_modules/eslint/bin/eslint.js pages components __tests__",
"precommit": "pretty-quick --staged",
"docs": "styleguidist server",
"docs:build": "styleguidist build",
"bundle_analyzer": "BUNDLE_CHECK=true yarn build",
"download": "node scripts/download.js data/data.json",
"test_urls": "node scripts/test_benefit_urls.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:ci": "start-server-and-test build:start http://localhost:3000 cypress:run",
"preversion": "yarn test && yarn lint",
"version": "yarn run build && git add -A pages",
"postversion": "git push && git push --tags && rm -rf build/temp",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"@axe-core/react": "^4.2.2",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@material-ui/core": "^3.9.3",
"autosuggest-highlight": "^3.1.1",
"babel-loader": "^8.2.2",
"babel-plugin-emotion": "^10.0.29",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"create-react-context": "^0.3.0",
"detect-browser": "^5.2.0",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-adapter-react-16.3": "^1.7.4",
"eslint-utils": "3.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"isomorphic-unfetch": "^3.1.0",
"jest-haste-map": "^27.0.6",
"jest-resolve": "^24.9.0",
"js-yaml": "4.1.0",
"jsdom": "^16.7.0",
"lunr": "^2.3.9",
"lunr-languages": "^1.8.0",
"markdown-it": "^12.2.0",
"next": "^9.5.4",
"next-redux-wrapper": "^3.0.0-alpha.2",
"preact": "10.5.14",
"prop-types": "^15.6.0",
"raven-js": "^3.27.1",
"react": "16.13.0",
"react-autosuggest": "^10.1.0",
"react-dom": "^16.13.0",
"react-ga": "^3.3.0",
"react-highlight-words": "^0.17.0",
"react-jss": "^8.6.1",
"react-jsx-parser": "^1.28.4",
"react-media": "^1.9.2",
"react-modal": "^3.14.3",
"react-redux": "^5.1.1",
"redux": "^4.1.1",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "^0.13.9",
"reselect": "^4.0.0",
"snyk": "^1.685.0",
"universal-cookie": "^4.0.4",
"webpack": "^5.49.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"condition-circle": "^2.0.2",
"cypress": "^3.3.1",
"enzyme": "^3.11.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-watch": "^5.1.2",
"husky": "^2.3.0",
"jest": "^24.9.0",
"jest-axe": "^3.3.0",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.0",
"react-styleguidist": "^9.1.16",
"react-test-renderer": "^16.13.0",
"start-server-and-test": "^1.13.1",
"webpack-bundle-analyzer": "^3.6.0"
},
"snyk": true
}