-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.48 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
87
88
{
"name": "gig-client-shared",
"repository": "git://github.com/lsflk/gig-client-shared",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"version": "0.3.49",
"exports": {
"./constants": "./constants/index.js",
"./routes": "./routes/index.js",
"./auth": "./auth/index.js",
"./components": "./components/index.js",
"./functions": "./functions/index.js"
},
"files": "./dist",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"start-playground": "cd playground && npm run start",
"i-all": "npm i && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "jest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@rollup/plugin-babel": "^5.3.1",
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-essentials": "^6.4.19",
"@storybook/addon-interactions": "^6.4.19",
"@storybook/addon-links": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-library": "^0.0.9",
"@testing-library/react": "^12.1.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.22",
"babel-loader": "^8.2.4",
"i": "^0.3.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.19",
"npm": "^8.5.5",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.70.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-img": "^1.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"http-proxy-middleware": "^2.0.3"
},
"peerDependencies": {
"@mui/material": "^5.5.2",
"@mui/styles": "^5.5.1",
"@types/node": "^17.0.22",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-content-loader": "^6.2.0",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
"react-spinners": "^0.11.0"
}
}