-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTest",
"test:ci": "npm test -- --coverage",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"pre-commit": [
"lint",
"lint-staged"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/faker": "^4.1.11",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "5.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.1",
"eslint": "7.9.0",
"eslint-config-standard-with-typescript": "^11.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-standard": "^5.0.0",
"faker": "^4.1.0",
"git-commit-msg-linter": "^5.0.6",
"husky": "4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "11.1.2",
"sass": "^1.75.0",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"styled-components": "^6.1.8",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "5.1.6",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"axios": "^1.6.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}