-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "clean-react",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --open ",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "yarn test -- --watch",
"test:staged": "yarn test -- --findRelatedTests ",
"test:ci": "yarn test -- --coverage"
},
"devDependencies": {
"@testing-library/react": "^11.0.4",
"@types/axios": "^0.14.0",
"@types/faker": "^5.1.2",
"@types/jest": "26.0.14",
"@types/node": "14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "4.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.3.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"eslint-config-standard-with-typescript": "11",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-standard": "4.0.1",
"faker": "^5.1.0",
"git-commit-msg-linter": "3.0.0",
"husky": "4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "26.4.2",
"lint-staged": "10.4.0",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"ts-jest": "26.4.0",
"ts-loader": "^8.0.4",
"typescript": "4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.20.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
}
}