generated from DTS-STN/next-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.75 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": "eligibility-estimator-client",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "^16.14"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"cypress:run": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"test:e2e": "start-server-and-test dev http://localhost:3000 cypress:run",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --silent",
"test": "yarn run lint && yarn run test:e2e && yarn run test:unit",
"prepare": "husky install",
"reformat": "prettier --write .",
"run-scraper": "ts-node utils/api/scrapers/_main.ts"
},
"dependencies": {
"@dts-stn/service-canada-design-system": "1.57.1-dev.50f5be381",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "latest",
"@tailwindcss/forms": "^0.5.0",
"csv-writer": "^1.6.0",
"joi": "^17.6.0",
"jquery": "^3.6.2",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"next": "12.1.4||^12.1.7",
"next-auth": "^4.20.1",
"pino": "^8.15.0",
"prom-client": "^14.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-number-format": "^4.9.1",
"react-select": "^5.2.2",
"react-use": "^17.4.0",
"string-strip-html": "^9.1.7",
"ts-node": "^10.7.0",
"xlsx": "^0.18.5",
"yaml": "^2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@types/cypress": "^1.1.3",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.181",
"@types/node": "^20.4.8",
"@types/pino": "^7.0.5",
"@types/react": "^17.0.42",
"@types/testing-library__jest-dom": "^5.14.3",
"autoprefixer": "^10.4.4",
"axe-core": "^4.7.0",
"cypress": "12.9.0",
"cypress-axe": "^1.4.0",
"cypress-multi-reporters": "^1.6.3",
"eslint": "^8.17.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-axe": "^6.0.0",
"lint-staged": "^12.3.7",
"node-mocks-http": "^1.11.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"start-server-and-test": "^2.0.0",
"string.prototype.replaceall": "^1.0.6",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn eslint --cache --fix",
"*.{js,ts,jsx,tsx,yaml,yml,json,md,html,css}": "yarn prettier --write"
}
}