This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "interactive-sync-front",
"version": "0.2.0-alpha",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js"
},
"keywords": [
"twitch",
"extension"
],
"babel": {
"presets": [
"@babel/preset-react"
]
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 100,
"tabWidth": 4
},
"author": "Jean-Marie Cart-Lamy <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"prettier": "^2.1.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.3"
},
"dependencies": {
"axios": "^0.20.0",
"body-scroll-lock": "^3.1.5",
"classnames": "^2.2.6",
"formik": "^2.2.6",
"jsonwebtoken": "^8.5.1",
"preact": "^10.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-use-ripple": "^1.4.0",
"yup": "^0.32.8"
}
}