-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.88 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
{
"name": "clean-react-ts",
"version": "2.2.5",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"dev:base": "webpack-dev-server --config webpack.dev.js",
"dev": "npm run dev:base -- --open",
"build": "webpack --config webpack.prod.js",
"pre-commit": "lint-staged",
"prepare": "husky install",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --passWithNoTests --runInBand --noStackTrace --no-cache",
"test:clear": "npm test --clearCache",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"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 -s -u"
},
"keywords": [],
"author": "Guilherme Alexandre Rocha Pereira",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.16.1",
"@testing-library/jest-dom": "^5.9.5",
"@testing-library/react": "^13.4.0",
"@types/axios": "^0.14.0",
"@types/faker": "5.5.3",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"cypress": "^12.3.0",
"eslint": "^8.31.0",
"eslint-config-standard-with-typescript": "^27.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-standard": "^5.0.0",
"faker": "5.5.3",
"favicons": "^7.0.2",
"favicons-webpack-plugin": "^6.0.0",
"full-icu": "^1.5.0",
"git-commit-msg-linter": "^4.5.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-localstorage-mock": "^2.4.26",
"lint-staged": "^13.1.0",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^8.0.0",
"sass-loader": "^13.2.0",
"start-server-and-test": "^1.15.2",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"ajv": "^8.12.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^1.2.2",
"express": "^4.18.2",
"express-history-api-fallback": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.2.0",
"recoil": "^0.7.6"
},
"engines": {
"node": "14.17.x"
}
}