-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "chess-css",
"version": "0.1.0",
"description": "Chess variant that uses CSS to manipulate the board and pieces.",
"main": "./src/server/production-server.js",
"scripts": {
"start": "node ./src/server/production-server.js",
"build": "webpack --config webpack.prod.js",
"dev": "node ./src/server/dev-server.js",
"doc": "jsdoc -c jsdoc.json"
},
"author": "Rory McDonald",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"dotenv": "^16.0.3",
"eslint-plugin-import": "^2.7.0",
"express": "^4.14.0",
"monaco-editor": "^0.34.0",
"monaco-editor-webpack-plugin": "^7.0.1",
"requirejs": "^2.3.6",
"socket.io": "^4.5.3",
"socket.io-client": "^4.5.3"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.7.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^4.11.1",
"webpack-hot-middleware": "^2.25.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rorymcd98/CheSS.git"
},
"bugs": {
"url": "https://github.com/rorymcd98/CheSS/issues"
},
"homepage": "https://github.com/rorymcd98/CheSS#readme"
}