-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "dungeon_delvers",
"workspaces": [
"client",
"server",
"auth",
"db_migrations"
],
"version": "0.0.1",
"description": "Online 3D Dungeon Crawler made with BabylonJS",
"main": "index.js",
"scripts": {
"build": "npm run build --workspace=client",
"clean": "npm run clean --workspace=client",
"deploy-demo": "npm run deploy-demo --workspace=client",
"start": "concurrently \"npm run start --workspace=client\" \"npm run start:dev --workspace=server\"",
"test": "npm run test --workspace=client"
},
"keywords": [
"BabylonJS",
"JavaScript",
"Typescript",
"Node",
"3D",
"Browser",
"Game"
],
"author": "Shawn Mealey",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/jasmine": "^5.1.4",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-jest": "^29.5.0",
"buffer": "^6.0.3",
"concurrently": "^8.2.2",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"parcel": "^2.9.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
}
}