-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "clean-react",
"version": "1.3.0",
"main": "index.js",
"author": "Fernando Linhares <fernandolinhares1920@globo.com>",
"license": "MIT",
"scripts": {
"start": "webpack serve",
"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",
"check": "yarn-check -u -s"
},
"devDependencies": {
"@testing-library/react": "^11.2.2",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.4",
"@types/jest": "26.0.19",
"@types/node": "14.14.16",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "4.11.1",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"css-loader": "^5.0.1",
"eslint": "7.16.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "5.0.0",
"faker": "^5.1.0",
"git-commit-msg-linter": "^3.0.0",
"husky": "4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-localstorage-mock": "2.4.6",
"lint-staged": "^10.5.1",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"ts-loader": "8.0.12",
"typescript": "4.1.3",
"webpack": "5.11.1",
"webpack-cli": "4.3.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
}
}