-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"name": "clean-react",
"version": "1.6.1",
"description": "",
"main": "index.js",
"scripts": {
"start:prod": "node .",
"start:dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watched": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm run test:ci && coveralls < coverage/lcov.info",
"test:cypress": "cypress open --project __tests__",
"check": "npm-check -u -s"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.12.2",
"@faker-js/faker": "^7.4.0",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"css-loader": "^6.7.1",
"cypress": "10.10.0",
"eslint": "^8.25.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-standard": "^5.0.0",
"git-commit-msg-linter": "^4.2.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-localstorage-mock": "^2.4.22",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^1.1.3",
"express": "^4.18.2",
"express-history-api-fallback": "^2.2.1",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
}
}