-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "learn-react-typescript",
"private": true,
"workspaces": [
"packages/*"
],
"version": "1.0.0",
"description": "Learn React with TypeScript",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/locol23/learn-react-typescript.git"
},
"author": "Yoshitaka Terazawa <locol6622@gmail.com>",
"license": "MIT",
"keywords": [
"react",
"typescript"
],
"bugs": {
"url": "https://github.com/locol23/learn-react-typescript/issues"
},
"homepage": "https://github.com/locol23/learn-react-typescript#readme",
"scripts": {
"build": "yarn workspaces run build && yarn workspace storybook run build-storybook"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"ress": "^2.0.4",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/redux": "^3.6.0",
"@types/styled-components": "^5.1.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6"
}
}