-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.02 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.02 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "browser-app",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/remoteshiva/browser-app.git"
},
"dependencies": {
"@tailwindcss/ui": "^0.5.0",
"@types/clipboard": "^2.0.1",
"@types/lodash": "^4.14.168",
"anchorme": "^2.1.2",
"clipboard": "^2.0.6",
"connected-react-router": "^6.8.0",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.1.1",
"firebase": "^7.19.1",
"lodash": "^4.17.20",
"polished": "^3.6.7",
"react": "^16.13.1",
"react-datepicker": "^3.2.2",
"react-dom": "^16.13.1",
"react-dropzone": "^11.2.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"sanitize-html": "^2.0.0",
"smartlook-client": "^4.6.1",
"styled-components": "^5.1.1",
"tailwindcss": "^1.7.2",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-controls": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/node-logger": "^6.1.11",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.11",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/cuid": "^1.3.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.54",
"@types/react": "^16.9.46",
"@types/react-datepicker": "^3.1.1",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/redux": "^3.6.0",
"@types/redux-thunk": "^2.1.0",
"@types/sanitize-html": "^1.27.0",
"@types/storybook__react": "^5.2.1",
"@types/styled-components": "^5.1.2",
"autoprefixer": "^9.8.6",
"babel-plugin-macros": "^2.8.0",
"postcss-cli": "^7.1.1",
"react-is": "^16.13.1",
"redux-devtools-extension": "^2.13.8",
"ts-jest": "^26.4.4",
"twin.macro": "^1.7.0",
"typescript": "^3.7.5"
},
"scripts": {
"build:css": "postcss src/assets/styles/tailwind.css -o src/assets/styles/styles.css",
"watch:css": "postcss src/assets/styles/tailwind.css -o src/assets/styles/styles.css",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"clean-install": "rm -rf node_modules && rm -f yarn.lock && yarn install",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"alias": {
"#components": "./src/components"
}
}