-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 900 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 900 Bytes
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
{
"name": "guibook",
"version": "1.0.0",
"description": "『入門 GUI』 第2章 「バウンディングボックスことはじめ」サンプルコード",
"repository": "git@github.com:fsubal/guibook.git",
"author": "fsubal <fsubal1102@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.jsx,.ts,.tsx src"
},
"devDependencies": {
"@types/lodash-es": "^4.17.3",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.2",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"dependencies": {
"immer": "^9.0.6",
"lodash-es": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}