-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.52 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": "mindsmachines-connect4",
"version": "1.0.0",
"description": "A moderator Connect 4 program for the use of the RPI Minds and Machines course for the final project",
"scripts": {
"server-dev": "nodemon src/server 5000",
"server": "node src/server 5000",
"client": "([ -d client_build/ ] || npm run build-client) && npm start",
"client-dev": "vite dev",
"build-client": "vite build",
"build-server": "pkg src/server/index.js -o server_build/connect4_server -c pkgconfig.json",
"start": "vite preview --host",
"test": "node testgame.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exoRift/mindsmachines-connect4.git"
},
"author": "exoRift",
"license": "MIT",
"bugs": {
"url": "https://github.com/exoRift/mindsmachines-connect4/issues"
},
"dependencies": {
"@polka/send-type": "^0.5.2",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"mass-require": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^3.2.4"
},
"devDependencies": {
"@yao-pkg/pkg": "^6.1.1",
"eslint": "^8.27.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"nodemon": "^2.0.20"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}