-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
135 lines (135 loc) · 4.07 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "partymoji",
"version": "1.0.0",
"private": false,
"homepage": "https://mikeyburkman.github.io/partymoji/",
"repository": {
"url": "https://github.com/MikeyBurkman/partymoji"
},
"engines": {
"node": "16.x"
},
"scripts": {
"tsc": "tsc",
"start": "REACT_APP_ENV=DEV REACT_APP_BUILD_TIME=$(date '+%m/%d/%y %r %Z') node scripts/start.js",
"start:prod": "yarn build && sed -i '' 's/\\/partymoji//g' ./docs/index.html && npx http-serve ./docs -a localhost -p 3000 -o",
"build": "REACT_APP_ENV=PROD REACT_APP_BUILD_TIME=$(date '+%m/%d/%y %r %Z') node scripts/build.js && del ./docs && mkdir ./docs && mv ./build/* ./docs",
"pretty": "prettier --write \"**/*.{js,md,ts,html,tsx,json}\"",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "7.12.3",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^5.0.0-beta.4",
"@material-ui/icons": "^5.0.0-beta.4",
"@material-ui/lab": "^4.0.0-alpha.60",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
"@react-hook/debounce": "^4.0.0",
"@svgr/webpack": "5.5.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "^0.3.7",
"babel-preset-react-app": "^10.0.0",
"bezier-easing": "^2.1.0",
"bfj": "^7.0.2",
"camelcase": "^6.1.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"classnames": "^2.3.1",
"color-convert": "^2.0.1",
"css-loader": "4.3.0",
"del-cli": "^4.0.1",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"eslint": "^7.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.2",
"eslint-webpack-plugin": "^2.5.2",
"file-loader": "6.1.1",
"file-saver": "^2.0.5",
"fs-extra": "^9.0.1",
"get-pixels": "^3.3.3",
"gif-encoder": "^0.7.2",
"gifuct-js": "^2.1.2",
"html-webpack-plugin": "4.5.0",
"identity-obj-proxy": "3.0.0",
"lz-string": "^1.4.4",
"mini-css-extract-plugin": "0.11.3",
"mobile-detect": "^1.4.5",
"optimize-css-assets-webpack-plugin": "5.0.4",
"pnp-webpack-plugin": "1.6.4",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "5.0.2",
"prompts": "2.4.0",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-color": "^2.19.3",
"react-dev-utils": "^11.0.3",
"react-dom": "^17.0.2",
"react-refresh": "^0.8.3",
"remeda": "^0.0.30",
"resolve": "1.18.1",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^10.0.5",
"seedrandom": "^3.0.5",
"semver": "7.3.2",
"style-loader": "1.3.0",
"swiper": "^8.4.5",
"terser-webpack-plugin": "4.2.3",
"ts-pnp": "1.2.0",
"url-loader": "4.1.1",
"webpack": "4.44.2",
"webpack-dev-server": "3.11.1",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "5.1.4",
"worker-loader": "^3.0.8"
},
"devDependencies": {
"@types/color-convert": "^2.0.0",
"@types/file-saver": "^2.0.5",
"@types/google.analytics": "^0.0.42",
"@types/lz-string": "^1.3.34",
"@types/node": "^14.0.0",
"@types/offscreencanvas": "^2019.7.0",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.5",
"@types/react-dom": "^17.0.0",
"@types/seedrandom": "^2.4.28",
"@types/uuid": "^8.3.1",
"husky": "^7.0.2",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
},
"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"
]
},
"babel": {
"presets": [
"react-app"
]
}
}