This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "@mikazuki/react-canvas-experimentals",
"version": "1.0.0",
"description": "React + Canvas",
"main": "dist/index.js",
"repository": "ssh://git@github.com/mika-sandbox/react-canvas-experimentals.git",
"author": "Mikazuki <mikazuki_fuyuno@outlook.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "parcel serve public/index.html",
"build": "parcel build public/index.html",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-links": "^5.2.4",
"@storybook/addons": "^5.2.4",
"@storybook/react": "^5.2.4",
"@types/react": "^16.9.6",
"@types/react-dom": "^16.9.2",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"babel-loader": "^8.0.6",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.1.2",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2",
"react-docgen-typescript-loader": "^3.3.0",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-recess-order": "^2.0.3",
"stylelint-config-standard": "^19.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"ts-loader": "^6.2.0",
"typescript": "^3.6.4"
},
"dependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"styled-components": "^4.4.0"
}
}