-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·112 lines (112 loc) · 3.27 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
{
"name": "front-end-starter-kit",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"cy:open": "cypress open",
"cy:run": "cypress run",
"percy": "percy exec -- npm run cy:run",
"start": "webpack serve --config webpack.js --mode development --progress --devtool hidden-nosources-source-map",
"start:serve": "serve -s ./dist",
"build": "webpack --config webpack.js --mode production",
"lint:js": "eslint src/ --fix",
"lint:css": "stylelint --fix src/**/*.css",
"precommit": "lint-staged"
},
"author": "",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@babel/eslint-plugin": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.5",
"@firebase/rules-unit-testing": "^1.3.8",
"@percy/cli": "^1.0.0-beta.58",
"@percy/cypress": "^3.1.0",
"@vue/preload-webpack-plugin": "^2.0.0",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"canvas": "^2.8.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"cssnano": "^5.0.6",
"cypress": "^7.6.0",
"cypress-file-upload": "^5.0.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.5",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"serve": "^11.3.2",
"sonarqube-scanner": "^2.8.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"webpack": "^5.39.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"<rootDir>/setup-jest.js"
],
"setupFilesAfterEnv": [
"<rootDir>/setup-tests.js"
],
"coverageReporters": [
"html",
"clover"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/.history",
"<rootDir>/cypress"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"browserslist": [
"last 2 chrome versions",
"last 2 safari versions"
],
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm test"
}
},
"engines": {
"node": "^14.15.0"
}
}