-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@react-libraries/virtual-window",
"version": "1.0.7",
"main": "dist/index.js",
"license": "MIT",
"author": "SoraKumo <[email protected]>",
"scripts": {
"storybook": "start-storybook -p 9001",
"storybook:build": "build-storybook",
"storybook:test": "build-storybook && yarn test:screenshot",
"build": "webpack --config src/webpack.config.ts",
"watch": "webpack --config src/webpack.config.ts -w",
"lint": "eslint --ext .js,.ts,.tsx src",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx src",
"screenshot": "rimraf __screenshots__ && npm-run-all -p -r sc:*",
"sc:storybook": "http-server -s -p 9001 storybook-static",
"sc:screenshot": "storycap --delay 500 -p 6 http://localhost:9001",
"sf": "node bin/sf"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"react": "*",
"resize-observer-polyfill": "*",
"styled-components": "*"
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-console": "^1.2.3",
"@storybook/addon-docs": "^6.3.8",
"@storybook/addon-storysource": "^6.3.8",
"@storybook/addon-viewport": "^6.3.8",
"@storybook/builder-webpack5": "^6.3.8",
"@storybook/manager-webpack5": "^6.3.8",
"@storybook/react": "^6.3.8",
"@types/node": "^16.10.2",
"@types/react": "~17.0.25",
"@types/react-dom": "~17.0.9",
"@types/styled-components": "^5.1.14",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"file-loader": "^6.2.0",
"http-server": "^13.0.2",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-svgo": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"puppeteer": "^10.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reg-cli": "^0.17.3",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"storycap": "^3.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"typescript-plugin-styled-components": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReactLibraries/virtual-window.git"
},
"description": "VirtualWindow for React",
"bugs": {
"url": "https://github.com/ReactLibraries/virtual-window/issues"
},
"homepage": "https://github.com/ReactLibraries/virtual-window#readme",
"keywords": [
"react",
"vertual-window",
"window-system",
"dialog",
"typescript"
]
}