-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.2 KB
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
{
"name": "@bookshelf/web",
"version": "1.0.0",
"private": true,
"dependencies": {
"@apollo/client": "3.2.5",
"cloudinary-react": "1.6.7",
"clsx": "1.1.1",
"crypto-hash": "1.3.0",
"formik": "2.2.5",
"graphql": "15.4.0",
"history": "5.0.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-icons": "3.11.0",
"react-router": "6.0.0-beta.0",
"react-router-dom": "6.0.0-beta.0",
"subscriptions-transport-ws": "0.9.18",
"yup": "0.29.3"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@storybook/addon-actions": "6.0.26",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-knobs": "6.0.26",
"@storybook/addon-links": "6.3.4",
"@storybook/addons": "6.0.26",
"@storybook/react": "6.0.26",
"@testing-library/jest-dom": "5.11.5",
"@testing-library/react": "11.1.1",
"@testing-library/user-event": "12.2.0",
"@types/crypto-hash": "1.1.2",
"@types/graphql": "14.5.0",
"@types/react": "16.9.56",
"@types/react-dom": "16.9.9",
"@types/react-icons": "3.0.0",
"@types/rimraf": "3.0.0",
"@types/testing-library__jest-dom": "5.9.5",
"@types/webpack": "4.41.24",
"@typescript-eslint/eslint-plugin": "4.7.0",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"core-js": "3.7.0",
"css-loader": "4.3.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testing-library": "3.10.0",
"file-loader": "6.1.1",
"html-webpack-plugin": "4.5.0",
"sass": "1.27.0",
"sass-loader": "10.0.4",
"style-loader": "1.3.0",
"ts-loader": "8.0.11",
"webpack": "4.44.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
},
"scripts": {
"clean": "yarn rimraf coverage dist storybook-static",
"compile": "yarn webpack --config webpack.config.js --mode production",
"build": "yarn clean && yarn compile",
"dev": "yarn webpack-dev-server --mode development",
"test": "yarn jest",
"typecheck": "yarn tsc --noEmit",
"lint": "yarn eslint . --ext .ts,.tsx",
"storybook": "start-storybook --port 6006 --ci",
"storybook:build": "yarn build-storybook"
}
}