-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.08 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
{
"name": "react-hook-sample",
"version": "0.0.2",
"description": "I wanna useHook",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --open --colors --hot --mode development",
"lint": "eslint **/*.js",
"lint:fix": "prettier-eslint **/*.js --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeonHyungJo/basic-react-dev.git"
},
"author": "SeonHyungJo",
"license": "MIT",
"bugs": {
"url": "https://github.com/SeonHyungJo/basic-react-dev/issues"
},
"homepage": "https://github.com/SeonHyungJo/basic-react-dev#readme",
"dependencies": {
"react": "16.13.1",
"react-dom": "16.13.1",
"typescript": "4.0.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.5",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@babel/runtime": "7.11.2",
"@types/enzyme": "3.10.7",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.14",
"@types/react": "16.9.50",
"@types/react-dom": "16.9.8",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"babel-loader": "8.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"enzyme-to-json": "3.6.1",
"eslint": "7.10.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.2",
"eslint-plugin-react-hooks": "4.1.2",
"eslint-plugin-standard": "4.0.1",
"html-webpack-plugin": "4.5.0",
"jest": "26.4.2",
"prettier-eslint": "11.0.0",
"prettier-eslint-cli": "5.0.0",
"prop-types": "15.7.2",
"source-map-loader": "1.1.0",
"ts-jest": "26.4.1",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-hot-middleware": "2.25.0"
}
}