-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 931 Bytes
/
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
{
"name": "tichu",
"version": "0.0.1",
"description": "a web card game",
"main": "tichu/src/index.js",
"repository": "[email protected]:jstanley0/tichu.git",
"author": "Jeremy Stanley <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"dependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@mui/material": "^5",
"axios": "^1",
"babel-loader": "^8",
"react": "^17",
"react-beautiful-dnd": "^13",
"react-dom": "^17",
"webpack": "^5"
},
"devDependencies": {
"eslint": "^8",
"eslint-plugin-react": "^7",
"eslint-plugin-react-hooks": "^4.6",
"webpack-cli": "^4"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch"
},
"packageManager": "[email protected]"
}