-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
114 lines (114 loc) · 3.23 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
{
"name": "react-chess",
"version": "2.0.0",
"description": "Chess game",
"main": "index.js",
"engines": {
"npm": ">=8.5.0",
"node": ">=14.0.0"
},
"private": true,
"scripts": {
"lint": "eslint '**/src/**/*.js'",
"prettier": "prettier -c **/src/**/*.js",
"clean": "rimraf public",
"clean:test": "rimraf coverage",
"build:chess": "npm run build -w chess",
"build:ui": "npm run build -w ui",
"build:chess:watch": "npm run build:watch -w chess",
"build:ui:watch": "npm run build:watch -w ui",
"build": "npm run build --ws && webpack --mode production",
"dev": "webpack server --mode development",
"prod": "npm run clean && npm run build && http-server",
"prod:open": "npm run prod -- -o",
"start": "./start.sh",
"pretest": "npm run clean:test",
"test": "npm run clean:test && c8 ava",
"test:open": "open ./coverage/index.html"
},
"keywords": [
"react",
"chess"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jsveron23/react-chess"
},
"author": "Tony Jin <[email protected]>",
"license": "MIT",
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"arrowParens": "always",
"trailingComma": "es5",
"bracketSpacing": true,
"proseWrap": "always"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"babel-loader": "^8.2.3",
"babel-plugin-rewire": "^1.2.0",
"c8": "^7.11.2",
"concurrently": "^7.1.0",
"core-js": "^3.22.3",
"css-loader": "^6.6.0",
"esbuild": "^0.14.41",
"eslint": "^8.9.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.5.3",
"node-polyfill-webpack-plugin": "^1.1.4",
"postcss": "^8.4.7",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.1",
"prettier": "^2.5.1",
"react-refresh": "^0.11.0",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"style-loader": "^3.3.1",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"ava": "^4.2.0",
"classnames": "^2.3.1",
"fast-deep-equal": "^3.1.3",
"memoize-one": "^6.0.0",
"peerjs": "^1.4.4",
"prop-types": "^15.8.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-spinners": "^0.12.0",
"react-spring": "^9.4.4",
"react-use-measure": "^2.1.1",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"redux-undo": "^1.0.1",
"ui-box": "^5.0.0"
},
"workspaces": [
"packages/chess",
"packages/ui"
]
}