-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "practice_for_git",
"version": "0.0.1",
"description": "Practice for Git/Github",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress",
"build": "cross-env NODE_ENV=production webpack",
"lint": "eslint --ext ts,tsx .",
"test:unit": "jest",
"test:watch": "npm run test:unit -- --watch-all",
"coverage": "npm run test:unit -- --coverage",
"test": "npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saseungmin/practice_for_git.git"
},
"author": "saseungmin",
"license": "MIT",
"bugs": {
"url": "https://github.com/saseungmin/practice_for_git/issues"
},
"homepage": "https://github.com/saseungmin/practice_for_git#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"given2": "^2.1.7",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"jest-plugin-context": "^2.9.0",
"style-loader": "^3.2.1",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
}
}