-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.85 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
{
"name": "clean-react",
"version": "2.0.0",
"main": "index.js",
"repository": "https://github.com/miguelaugl/clean-react.git",
"author": "Miguel <miguelaugl@outlook.com>",
"license": "MIT",
"scripts": {
"start": "node index",
"dev:base": "webpack serve --config webpack.dev.js",
"dev": "yarn dev:base --open",
"build": "webpack --config webpack.prod.js",
"prepare": "husky install",
"lint": "eslint 'src/**'",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests",
"test:ci": "yarn test -- --coverage",
"test:coveralls": "yarn test:ci && coveralls < coverage/lcov.info",
"test:cypress": "cypress open",
"test:cypress:run": "cypress run",
"test:cypress:ci": "start-server-and-test dev:base http-get://localhost:8080 test:cypress:run",
"check": "npm-check -u -s"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"coveralls": "^3.1.1",
"css-loader": "^6.3.0",
"cypress": "^8.4.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.5",
"faker": "^5.5.3",
"favicons": "^6.2.2",
"favicons-webpack-plugin": "^5.0.2",
"git-commit-msg-linter": "^3.2.8",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.2",
"jest-localstorage-mock": "^2.4.18",
"lint-staged": "^11.1.2",
"mini-css-extract-plugin": "^2.3.0",
"node-sass": "^6.0.1",
"prettier": "^2.4.1",
"sass-loader": "^12.1.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^0.21.4",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
}
}