-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.59 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
{
"name": "react-clean",
"version": "1.1.0",
"description": "ReactJS Frontend using TDD, Clean Architecture and Typescript",
"author": "Claudeilton Dantas",
"main": "index.js",
"scripts": {
"start": "webpack serve --open",
"dev:base": "webpack serve --open --config webpack.config.js",
"dev": "npm run dev:base -- --open",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "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",
"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",
"prepare": "husky install"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.12.17",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@testing-library/react": "^11.2.5",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.3",
"coveralls": "^3.1.0",
"css-loader": "^5.0.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.20.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.4.0",
"git-commit-msg-linter": "^3.0.0",
"husky": "5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-localstorage-mock": "^2.4.6",
"lint-staged": "^10.5.4",
"node-sass": "^5.0.0",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"start-server-and-test": "^1.12.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"typescript": "^4.1.5",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}