forked from enable3d/enable3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "enable3d-project",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "npm run dev",
"dev": "npm-run-all --parallel start:*",
"build": "node scripts/build.mjs",
"bundle": "node scripts/webpack.mjs",
"format": "prettier --write packages/**/*.ts",
"headless": "nodemon packages/dev/src/headless-node.js",
"lint": "eslint packages/**/*.ts",
"publish": "npm run clean:dist && npm run tsc && npm-run-all publish:*",
"test": "npm-run-all test:*",
"tsc": "npm run build",
"clean:dist": "npx rimraf -y packages/**/dist",
"clean:bundles": "npx rimraf -y bundles",
"prune": "node scripts/prune.mjs",
"postinstall": "lerna bootstrap --no-ci",
"lerna-version": "lerna version --no-commit-hooks --no-git-tag-version && npm run build && npm run bundle",
"start:common": "cd packages/common && tsc --watch",
"start:threeWrapper": "cd packages/threeWrapper && tsc --watch",
"start:ammoPhysics": "cd packages/ammoPhysics && tsc --watch",
"start:ammoOnNodejs": "cd packages/ammoOnNodejs && npm run bundle",
"start:threeGraphics": "cd packages/threeGraphics && tsc --watch",
"start:phaserExtension": "cd packages/phaserExtension && tsc --watch",
"start:enable3d": "cd packages/enable3d && tsc --watch",
"start:dev": "cd packages/dev && npm start",
"publish:threeWrapper": "cd packages/threeWrapper && npm publish",
"publish:common": "cd packages/common && npm publish",
"publish:ammoPhysics": "cd packages/ammoPhysics && npm publish",
"publish:ammoOnNodejs": "cd packages/ammoOnNodejs && npm publish",
"publish:threeGraphics": "cd packages/threeGraphics && npm publish",
"publish:phaserExtension": "cd packages/phaserExtension && npm publish",
"publish:enable3d": "cd packages/enable3d && npm publish",
"test:headless": "jest test/headless/*.test.js",
"test:pre": "npm run test:clean && node test/preTest.js",
"test:jest": "jest test/*.test.js",
"test:clean": "node test/cleanTest.js",
"esbuild:test": "npx -y esbuild test/esbuild-test.js --bundle --outfile=bundle.js"
},
"repository": {
"type": "git",
"url": "git https://github.com/enable3d/enable3d.git"
},
"keywords": [],
"author": "Yannick Deubel",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/enable3d/enable3d/issues"
},
"homepage": "https://github.com/enable3d/enable3d#readme",
"dependencies": {
"@types/matter-js": "0.17.6",
"@types/three": "0.161.2",
"matter-js": "0.17.1",
"phaser": "^3.55.2",
"poly-decomp": "^0.3.0",
"three": "0.161.0",
"three-csg-ts": "^3.1.10"
},
"devDependencies": {
"@types/node": "^20.11.25",
"@yandeu/eslint-config": "^0.0.4",
"@yandeu/keyboard": "^0.1.0",
"@yandeu/prettier-config": "^0.0.4",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^29.0.3",
"jest-puppeteer": "^10.0.1",
"lerna": "^5.1.4",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"puppeteer": "^22.4.1",
"ts-loader": "^9.1.2",
"typescript": "^5.1.6",
"webpack": "^5.31.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.5.0",
"webpack-node-externals": "^3.0.0"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}