-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
84 lines (84 loc) · 2.92 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
{
"name": "templates",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "cypress open",
"test-ci": "cypress run",
"lint:js": "eslint --ext .js --ext .jsx ./src",
"lint-actions:js": "eslint --ext .js --ext .jsx ./src --max-warnings=0",
"lint:js:fix": "eslint --ext .js --ext .jsx --fix ./src",
"lint:scss": "stylelint \"./src/**/*.scss\"",
"lint-actions:scss": "stylelint \"./src/**/*.scss\" --max-warnings=0",
"lint:scss:fix": "stylelint --fix \"./src/**/*.scss\"",
"check-coding-standards": "yarn lint:js && yarn lint:scss",
"apply-coding-standards": "yarn lint:js:fix && yarn lint:scss:fix",
"check-coding-standards-actions": "yarn lint-actions:js && yarn lint-actions:scss",
"build": "NODE_ENV=production webpack",
"build-watch": "NODE_ENV=production webpack --watch",
"start": "NODE_ENV=development webpack serve --mode development --env development"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@u-wave/react-vimeo": "^0.9.11",
"babel-loader": "^8.2.2",
"babel-preset-react": "^6.24.1",
"css-loader": "^5.2.6",
"cypress": "^12.15.0",
"dayjs": "^1.10.7",
"dompurify": "^2.3.3",
"file-loader": "^6.2.0",
"html-react-parser": "^1.3.0",
"os2display-grid-generator": "^1.0.9",
"postcss-loader": "^5.3.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^5.20.12",
"react-router-dom": "^6.0.2",
"react-svg-loader": "^3.0.3",
"react-test-renderer": "^17.0.2",
"react-transition-group": "^4.4.5",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"styled-components": "^5.3.1"
},
"devDependencies": {
"enzyme": "^3.11.0",
"@testing-library/react": "^12.1.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"@svgr/webpack": "^5.5.0",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"html-webpack-plugin": "^5.3.1",
"prettier": "^2.2.1",
"prettier-plugin-jsdoc": "^0.3.24",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}