forked from veteransaffairscanada/vac-benefits-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.69 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
{
"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",
"semantic-release": "semantic-release"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"@material-ui/core": "^3.9.3",
"autosuggest-highlight": "^3.1.1",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.9",
"babel-plugin-import": "^1.11.2",
"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.2.3",
"detect-browser": "^4.5.0",
"emotion": "^10.0.9",
"emotion-server": "^10.0.9",
"express": "^4.17.1",
"helmet": "^3.18.0",
"isomorphic-unfetch": "^3.0.0",
"jest-haste-map": "^24.8.0",
"jest-resolve": "^24.8.0",
"js-yaml": "3.13.1",
"lunr": "^2.3.6",
"lunr-languages": "^1.1.0",
"markdown-it": "^8.4.2",
"next": "8.1.0",
"next-redux-wrapper": "^3.0.0-alpha.2",
"preact": "8.4.2",
"prop-types": "^15.6.0",
"raven-js": "^3.27.1",
"react": "16.8.6",
"react-autosuggest": "^9.4.3",
"react-dom": "^16.8.6",
"react-ga": "^2.5.7",
"react-highlight-words": "^0.16.0",
"react-jss": "^8.6.1",
"react-jsx-parser": "^1.17.0",
"react-media": "^1.9.2",
"react-modal": "^3.8.1",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"regenerator-runtime": "^0.13.2",
"reselect": "^4.0.0",
"universal-cookie": "^4.0.0",
"webpack": "^4.32.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0-rc.1",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"condition-circle": "^2.0.2",
"cypress": "^3.3.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "1.13.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-emotion": "^10.0.7",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-watch": "^5.1.2",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jest-axe": "^3.1.1",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"react-styleguidist": "^9.1.2",
"react-test-renderer": "^16.8.6",
"semantic-release": "^15.13.12",
"start-server-and-test": "^1.9.1",
"webpack-bundle-analyzer": "^3.3.2"
}
}