-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
79 lines (79 loc) · 2.78 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
{
"name": "healthicons",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"update-icons": "yarn import-meta-data && yarn generate-icon-og-images && yarn generate-site-map && yarn remove-svg-backgrounds",
"import-meta-data": "NODE_ENV=local ts-node-dev ./src/scripts/importMetaData.ts",
"generate-icon-og-images": "NODE_ENV=local ts-node-dev ./src/scripts/generateIconOgImages.ts",
"generate-site-map": "NODE_ENV=local ts-node-dev ./src/scripts/generateSiteMap.ts",
"remove-svg-backgrounds": "./src/scripts/removeSvgBackgrounds.sh",
"lint": "eslint '{src/components,src/lib,src/pages}/**/*.{js,jsx,ts,tsx}'",
"lint:style": "stylelint '{src,styles}/**/*.css'",
"test": "jest --watch",
"test:ci": "CI=true jest --ci --reporters=default --reporters=jest-junit"
},
"devDependencies": {
"@jamesives/github-pages-deploy-action": "^4.1.3",
"@reduxjs/toolkit": "^1.6.0",
"@types/classnames": "^2.3.1",
"@types/dotenv-flow": "^3.1.0",
"@types/jest": "^26.0.23",
"@types/lodash.startcase": "^4.4.6",
"@types/react": "^17.0.7",
"@types/react-lazy-load-image-component": "^1.5.1",
"@types/react-modal": "^3.12.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-eslint": "^10.1.0",
"classnames": "^2.3.1",
"cli-progress": "^3.9.0",
"dotenv-flow": "^3.2.0",
"downshift": "^6.1.3",
"eslint": "^7.10.0",
"eslint-config-next": "13",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"figma-js": "^1.13.0",
"jest": "^27.0.4",
"jest-junit": "^12.1.0",
"lodash.startcase": "^4.4.0",
"mkdirp": "^1.0.4",
"next": "13",
"prettier": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lazy-load-image-component": "^1.5.1",
"react-modal": "^3.13.1",
"react-redux": "^7.2.4",
"sass": "^1.34.0",
"sharp": "^0.28.3",
"stylelint": "^13.7.2",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"text-to-svg": "^3.1.5",
"ts-jest": "^27.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.5.2"
},
"jest-junit": {
"suiteName": "health-icons",
"suiteNameTemplate": "{filename}",
"classNameTemplate": "{title}",
"titleTemplate": "{title}"
},
"files": ["public/icons"]
}