-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.97 KB
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": "transcendence-game",
"version": "1.0.0",
"description": "Transcendence Game Project",
"type": "module",
"scripts": {
"postinstall": "cd client && npm install && cd ../server && npm install",
"dev": "concurrently --names \"SERVER,CLIENT\" --prefix-colors \"blue,green\" \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"clean": "npm run clean:client && npm run clean:server",
"clean:client": "cd client && npm run clean",
"clean:server": "cd server && npm run clean",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"start": "cd server && npm start"
},
"devDependencies": {
"concurrently": "^9.2.1",
"typescript": "^5.9.2"
},
"main": "index.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"ansi-regex": "^5.0.1",
"ansi-styles": "^4.3.0",
"chalk": "^4.1.2",
"cliui": "^8.0.1",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"emoji-regex": "^8.0.0",
"escalade": "^3.2.0",
"get-caller-file": "^2.0.5",
"has-flag": "^4.0.0",
"is-fullwidth-code-point": "^3.0.0",
"require-directory": "^2.1.1",
"rxjs": "^7.8.2",
"shell-quote": "^1.8.3",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"supports-color": "^8.1.1",
"tree-kill": "^1.2.2",
"tslib": "^2.8.1",
"wrap-ansi": "^7.0.0",
"y18n": "^5.0.8",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Transcendaire/Transcendence.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Transcendaire/Transcendence/issues"
},
"homepage": "https://github.com/Transcendaire/Transcendence#readme"
}