This repository has been archived by the owner on Sep 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "pacman-overflow",
"version": "0.0.2",
"description": "Multiplayer Pac-Man game.",
"main": "src/backend/Server.js",
"scripts": {
"postversion": "echo $npm_package_version > src/frontend/version && git add package.json package-lock.json src/frontend/version && git commit -m \"Bump version to ${npm_package_version} in version file\"",
"dev": "nodemon src/backend/Server.js & npm run tailwind:dev & wait",
"start": "node src/backend/Server.js & npm run tailwind & wait",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"tailwind:dev": "npx tailwindcss -c ./tailwind.config.cjs -i ./src/frontend/main.css -o ./src/frontend/styles.css --watch",
"tailwind": "npx tailwindcss -c ./tailwind.config.cjs -i ./src/frontend/main.css -o ./src/frontend/styles.css --minify",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cal-overflow/pacman-overflow.git"
},
"keywords": [
"PacMan",
"Multiplayer",
"Multi-Player",
"Pac-Man",
"multiplayer",
"multi-player"
],
"author": {
"name": "cal-overflow",
"url": "https://www.cal-overflow.dev"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/cal-overflow/pacman-overflow/issues"
},
"homepage": "https://github.com/cal-overflow/pacman-overflow#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-cli": "^6.26.0",
"babel-jest": "^27.5.1",
"babel-preset-env": "^1.7.0",
"chance": "^1.1.8",
"eslint": "^8.12.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"superagent": "^7.1.2",
"supertest": "^6.2.2",
"tailwindcss": "^3.0.23"
},
"dependencies": {
"express": "^4.17.3",
"socket.io": "^4.5.1"
},
"type": "module",
"jest": {
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}