This repository has been archived by the owner on Dec 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
115 lines (115 loc) · 3.87 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
{
"name": "ircc-rescheduler",
"version": "1.0.9",
"license": "MIT",
"engines" : { "node" : ">=8" },
"scripts": {
"build": "razzle build",
"dev": "razzle start",
"dbg": "node --inspect-brk node_modules/jest/bin/jest.js",
"lint": "node_modules/eslint/bin/eslint.js src test",
"start": "NODE_ENV=production node --icu-data-dir=./node_modules/full-icu build/server.js",
"build:start": "yarn build && yarn start",
"test:full": "start-server-and-test build:start http://localhost:3004 test:base",
"test": "yarn test:base -c jest-no-js.config.js",
"test:base": "node --icu-data-dir=./node_modules/full-icu node_modules/jest/bin/jest.js",
"extract": "NODE_ENV=development lingui extract",
"compile": "NODE_ENV=development lingui compile",
"add_locale": "lingui add-locale",
"stats": "BUNDLE_CHECK=true yarn build",
"a11y:test": "start-server-and-test build:start http://localhost:3004 a11y:run",
"a11y:run": "node a11y.test.js",
"nojs:test": "start-server-and-test build:start http://localhost:3004 nojs:run",
"nojs:run": "cross-env NOJS=\"debug\" jest 'NoJS'",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"ci:dev": "start-server-and-test dev http://localhost:3004 cypress:open",
"ci:prod": "start-server-and-test build:start http://localhost:3004 cypress:run",
"sentry_map": "sentry-cli releases -o canadian-digital-service -p ircc-rescheduler files $SENTRY_RELEASE upload-sourcemaps ./build/ --rewrite"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn test"
}
},
"dependencies": {
"@emotion/core": "^10.0.5",
"@emotion/styled": "^10.0.5",
"@jaredpalmer/after": "^1.3.1",
"@lingui/babel-preset-react": "^2.7.2",
"@lingui/react": "^2.7.2",
"@sentry/cli": "^1.37.1",
"aws-sdk": "^2.378.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"date-fns": "^1.29.0",
"email-validator": "^2.0.4",
"emotion": "^10.0.5",
"emotion-server": "^10.0.5",
"express": "^4.16.4",
"final-form": "^4.11.0",
"full-icu": "^1.2.1",
"helmet": "^3.15.0",
"hoist-non-react-statics": "^3.0.1",
"inline-css": "^2.4.1",
"js-cookie": "^2.2.0",
"memory-cache": "^0.2.0",
"nodemailer": "^4.7.0",
"prop-types": "^15.6.2",
"raven": "^2.6.4",
"razzle": "^2.4.1",
"react": "16.6.3",
"react-day-picker": "^7.2.4",
"react-dom": "^16.6.3",
"react-feature-flags": "^1.0.0",
"react-final-form": "^4.0.2",
"react-ga": "^2.5.6",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.3.1",
"react-router-hash-link": "^1.2.1",
"snarkdown": "^1.2.2",
"validatorjs": "^3.14.2"
},
"devDependencies": {
"@lingui/cli": "^2.7.2",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.10",
"babel-plugin-emotion": "^10.0.5",
"cross-env": "^5.2.0",
"cypress": "^3.1.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"pa11y": "^5.0.4",
"prettier": "^1.15.2",
"puppeteer": "^1.8.0",
"raf": "^3.4.1",
"require-all": "^3.0.0",
"start-server-and-test": "^1.7.10",
"supertest": "^3.3.0",
"webpack-bundle-analyzer": "^3.0.2"
},
"lingui": {
"srcPathIgnorePatterns": [
"/node_modules/",
"build"
],
"sourceLocale": "en",
"format": "lingui"
}
}